To better understand the bash special variables, I wrote a script to help myself. #!/bin/bash #Usage of $#echo ————————————————————echo -e You have entered $# arguments. #Usage of $*echo ————————————————————export IFS=’-’echo -e The arguments are: “$*” \(seperated by -\) #Usage of … Continue reading
