ask argument in shell script code example
Example 1: shell promt user input
#!/bin/bash
read -p "Enter Your Name: " username
echo "Welcome $username!"
Example 2: run sh with parameter
> ./myscript myargument
myargument becomes $1 inside myscript.