Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 152 Bytes

File metadata and controls

10 lines (8 loc) · 152 Bytes

Bash params

Back

echo "Number of arguments $#"
echo "All arguments $@"
echo "Argument 1 $1"
echo "Argument 2 $2"