Every time we publish a Linux hack that uses a shell script, someone will chime in about how awful it is to program shell scripts. While we like the ubiquity and efficiency, we can’t disagree that the ...
#!/bin/bash clear echo "Hello world!" The first line tells the operating system what shell to use to interpret the script and the location of the shell. Double quotes do not prevent Bash from ...