Read all parameters

Report a typo

Write a function all_parameters that accepts any number of the parameters as the input, reads all of them at once, and displays them in the console.

Sample Input 1:

Mary Jane Tom

Sample Output 1:

Mary Jane Tom
Write a program in Shell
#!/usr/bin/env bash

all_parameters() {

}
___

Create a free account to access the full topic