Bash Script Reference

$* – Store all command line arguments
$@ – Store all command line arguments
$# – Store count of command line arguments
$0 – Store name of script itself
$1 – Store first command line argument
$2 – Store second command line argument
0 – stdin
1 – stdout
2 – stderr

Leave a comment