|
||
|
Storing your C shell settings Shell scripts
A shell script is a sequence of commands stored in a file. When you type the file name at the command line, you run the script as if
its a new UNIX command.
Shell scripts are similar to batch files on Windows or DOS machines. The simplest scripts contain everyday UNIX commands, but scripts also understand their own programming language syntax. This syntax allows the use of variables, conditional execution (if-then logic), and repeated processing (looping). As a simple example, suppose youve created a file named myscript that looks like this: % cat myscript date who pwd ls –F
For this file to work as a script, it must be executable. That means the author must have execute permission, so you change the access
mode as follows:
% chmod u+x myscript Now you can run the commands in the script by entering myscript at the command line: % myscript Sometimes when you run a shell script, you encounter a Command not found error. Thats because UNIX searches a particular set of directories when locating a command. The Command not found message means that the shell script isnt in any of the places UNIX is searching. In the C shell, the path variable determines which directories will be searched. Configuration files, such as .cshrc, are a special type of shell script. A configuration file is executed automatically, so you dont need execute permission on it. |
||
|
|
||