I know it, forgets it and relearn it again. Time to write it down.
|
|
To run a non-executable
To run a non-executable
To start an executable (which is any file with executable permission); you just specify it by its path:
To make a script executable, give it the necessary permission:
When a file is executable, the kernel is responsible for figuring out how to execte it. For non-binaries, this is done by looking at the first line of the file. It should contain a
The hashbang tells the kernel what program to run (in this case the command That means every script that is executable should have a hashbang. If it doesn't, you're not telling the kernel what it is, and therefore the kernel doesn't know what program to use to interprete it. It could be |
||
|
|
|
If you want the script to run in the current shell (e.g. you want it to be able to affect your directory or environment) you should say:
or
Note that |
||||
|
|
|
For the bourne shell:
For bash:
|
||
|
|
|
To start the shell-script 'file.sh':
Another option is set executable permission using chmod command:
Now run .sh file as follows:
|
|||
|
|
