Command Line Arguments
#!/bin/bash
# Print value
echo "Argument one is $1"
echo "Argument two is $2"
echo "Argument three is $3"
# $1 is first argument
# $2 is second argument
# $3 is third argument
User Input
Sample Script
Comment
Last updated