Answers for "shell script get arguments"

8

shell script get arguments

$ myscript.sh first_arg second_arg

# myscript.sh
#!/bin/bash
echo $1 # output: first_arg
echo $2 # output: second_arg
Posted by: Guest on August-07-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language