Answers for "get additional parameters linux scripting"

1

get additional parameters linux scripting

$ cat myscript
#!/bin/bash
echo "First arg: $1"
echo "Second arg: $2"
$ ./myscript hello world
First arg: hello
Second arg: world
Posted by: Guest on June-13-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language