Output the total number

Report a typo

Write a function total_number that prints the total number of given parameters. The output line should look like this: The total number of parameters is <there is the total number>

Sample Input 1:

2 5 10 100 55

Sample Output 1:

The total number of parameters is 5
Write a program in Shell
#!/usr/bin/env bash

total_number() {

}
___

Create a free account to access the full topic