access the first argument bash code example
Example 1: shell script get arguments
$ myscript.sh first_arg second_arg
# myscript.sh
#!/bin/bash
echo $1 # output: first_arg
echo $2 # output: second_arg
Example 2: bash get first argument
function_name () {
echo "Parameter #1 is $1"
}