Tag: bash scripting

  • Bash Shell Scripting

    One of the best things about Linux is the ability to write shell scripts. These are most often used as utility programs to do repetitive tasks for you. I just wrote my first one on Sunday and here it is followed by commentary. #!/bin/bash echo “starting xchat…” xchat& echo “starting Gaim…” gaim& echo “starting Thunderbird…”…