Output the second parameter

Report a typo

Write a function second_parameter that prints the second parameter.

The string should look like this: The second parameter is <here is the second parameter>

Sample Input 1:

2 5 10

Sample Output 1:

The second parameter is 5
Write a program in Shell
#!/usr/bin/env bash
second_parameter() {

}
___

Create a free account to access the full topic