Differences between revisions 3 and 6 (spanning 3 versions)
Revision 3 as of 2004-12-10 17:10:49
Size: 367
Editor: anonymous
Comment:
Revision 6 as of 2004-12-10 17:14:06
Size: 459
Editor: anonymous
Comment:
Deletions are marked like this. Additions are marked like this.
Line 4: Line 4:
They are text files which first line says the shell to use (bash). So the first line is{{{ The MIME tipe is application/x-shellscript

They are text files which first line says the shell to use (bash). So the first line is
{{{
Line 8: Line 11:
After this, you can include comments using # in the beginning of the line. After this, you can include comments using # in the beginning of the line. For example:
{{{
 #This is a comment.
}}}
Line 10: Line 16:
Finally, the commands. Finally, the bash commands.

ShellScript is a ["Script"] written for the ["Shell"] (["Bash"]). They are similar to *.bat files in Windows.

The MIME tipe is application/x-shellscript

They are text files which first line says the shell to use (bash). So the first line is

 #!/bin/bash

After this, you can include comments using # in the beginning of the line. For example:

 #This is a comment.

Finally, the bash commands.