L120: Linux System Administration II

The script file. A shell script is a list of instructions saved in a flat file. Only two things are necessary. 1. The script’s first line must be #!/bin/bash (for a bash script) 2. The file must be readable and executable (with 755 permission for example) Assuming the script is in your current directory it can be started with./script-name ................
................