Quantcast
Channel: Bash – Jackie Chen's IT Workshop
Viewing all articles
Browse latest Browse all 22

Bash Special Variables

$
0
0
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

Viewing all articles
Browse latest Browse all 22

Trending Articles