Unix by Pratap
Unix by Pratap
Unix by Pratap
11
VMWARE
Choosing a Business Infrastructure Virtualization
Solution
strategy, it is important to choose the right vendor. VMware is the leading business virtualization infrastructure provider, offering the most trusted and reliable platform for building private clouds and federating to public clouds.
7/13/12
22
7/13/12
33
Unix Introduction
This session concerns UNIX, which is a common operating
system. By operating system, we mean the suite of programs which make the computer work. UNIX is used by the workstations and multi-user servers within the school.
graphical interface between the user and UNIX. However, knowledge of UNIX is required for operations which aren't covered by a graphical program, or for when there is no X windows system, for example, in a telnet session.
7/13/12
44
The kernel
The kernel of UNIX is the hub of the operating system: it allocates
time and memory to programs and handles the filestore and communications in response to system calls.
As an illustration of the way that the shell and the kernel work
together, suppose a user types rm myfile (which has the effect of removing the file myfile). The shell searches the filestore for the file containing the program rm, and then requests the kernel, through system calls, to execute the program rm on myfile
7/13/12
55
When the process rm myfile has finished running, the shell then
returns the UNIX prompt % to the user, indicating that it is waiting for further commands.
The shell
The shell acts as an interface between the user and the kernel.
When a user logs in, the login program checks the username and password, and then starts another program called the shell
commands the user types in and arranges for them to be carried out. The commands are themselves programs: when they terminate, the shell gives the user another prompt (% on our systems).
The adept user can customise his/her own shell, and users can
use different shells on the same machine. Staff and students in the school have the tcsh shell by default.
7/13/12
66
The tcsh shell has certain features to help the user inputting
commands.
filename or directory and pressing the [Tab] key, the tcsh shell will complete the rest of the name automatically. If the shell finds more than one name beginning with those letters you have typed, it will beep, prompting you to type a few more letters before pressing the tab key again. If you need to repeat a command, use the cursor keys to scroll up and down the list or type history for a list of previous commands.
History - The shell keeps a list of the commands you have typed in.
(process identifier).
7/13/12
77
The file-system is arranged in a hierarchical structure, like an inverted tree. The top of the hierarchy is traditionally called root.
7/13/12
88
7/13/12
99
7/13/12
1010
and coordinate all the details of the computer's internals is called the operating system or kernel.
known as the shell. The shell is a command line interpreter; it translates commands entered by the user and converts them into a language that is understood by the kernel.
7/13/12
1111
employees at Bell Labs, including Ken Thompson, Dennis Ritchie, Douglas McIlroy, and Joe Ossanna.
Unix, AIX, UP Unix and BSD are few examples. Linux is also a flavour of Unix which is freely available.
Several people can use a UNIX computer at the same time; hence
A user can also run multiple programs at the same time; hence
7/13/12
1212
Unix Architecture
Here is a basic block diagram of a UNIX system:
7/13/12
1313
The main concept that unites all versions of UNIX is the following
four basics:
with hardware and most of the tasks like memory management, tash scheduling and file management.
Shell: The shell is the utility that processes your requests. When
you type in a command at your terminal, the shell interprets the command and calls the program that you want. The shell uses standard syntax for all commands. C Shell, Bourne Shell and Korn Shell are most famous shells which are available with most of the Unix variants.
7/13/12
1414
which you would use in your day to day activities. cp, mv, cat and grep etc. are few examples of commands and utilities. There are over 250 standard commands plus numerous others provided through 3rd party software. All the commands come along with various optional options.
Files and Directories: All data in UNIX is organized into files. All
files are organized into directories. These directories are organized into a tree-like structure called the filesystem.
7/13/12
1515
System Bootup
If you have a computer which has UNIX operating system
installed on it, then you simply need to turn on its power to make it live.
and finally it prompts you to log into the system, which is an activity to log into the system and use it for your day to day activities.
7/13/12
1616
Login Unix:
When you first connect to a UNIX system, you usually see
To log in:
Have your userid (user identification) and password ready. Contact
Type your userid at the login prompt, then press ENTER. Your
userid is case-sensitive, so be sure you type it exactly as your system administrator instructed. Your password is also case-sensitive.
Type your password at the password prompt, then press ENTER. If you provided correct userid and password then you would be
allowed to enter into the system. Read the information and messages that come up on the screen something as below.
7/13/12
1717
$ prompt ) where you would type your all the commands. For example to check calendar you need to type cal command as follows:
7/13/12
1818
Change Password:
All Unix systems require passwords to help ensure that your files
and data remain your own and that the system itself is secure from hackers and crackers. Here are the steps to change your password:
To start, type passwd at command prompt as shown below. Enter your old password the one you're currently using. Type in your new password. Always keep your password complex
enough so that no body can guess it. But make sure, you remember it.
7/13/12
1919
[amrood]$ passwd Changing password for amrood (current) Unix password:****** New UNIX password:******* Retype new UNIX password:******* passwd: all authentication tokens updated successfully [amrood]$ Note: I have put stars (*) just to show you the location where you would need to enter the current and new passwords otherwise at your system, it would not show you any character when you would type.
7/13/12
2020
directories. These directories are organized into a tree-like structure called the filesystem.
You can use ls command to list out all the files or directories
7/13/12
2121
The easiest way to find out "who you are" is to enter the
[amrood]$ whoami amrood [amrood]$ Try it on your system. This command lists the account name associated with the current login. You can try who am i command as well to get information about yourself.
7/13/12
2222
information, based on how much you'd like to learn about the other users: users, who, and w.
7/13/12
2323
Logging Out:
When you finish your session, you need to log out of the system to
ensure that nobody else accesses your files while masquerading as you.
To log out: Just type logout command at command prompt, and the system
System Shutdown:
The most consistent way to shut down a Unix system properly via
7/13/12
2424
privileged account on a Unix system) to shut down the system, but on some standalone or personally owned Unix boxes, an administrative user and sometimes regular users can do so.
7/13/12
2525
organized into directories. These directories are organized into a tree-like structure called the filesystem.
When you work with UNIX, one way or another you spend
most of your time working with files. This tutorial would teach you how to create and remove files, copy and rename them, create links to them etc.
7/13/12
2626
data, text, or program instructions. In this tutorial, you look at working with ordinary files.
users familiar with Windows or Mac OS, UNIX directories are equivalent to folders.
as hard drives, CD-ROM drives, modems, and Ethernet adapters. Other special files are similar to aliases or shortcuts and enable you to access a single file using different names.
7/13/12
2727
Listing Files:
To list the files and directories stored in the current
[amrood]$ls
7/13/12
2828
The command ls supports the -l option which would help you to get
7/13/12
2929
Here is the information about all the listed columns: First Column: represents file type and premission given on the file.
Below is the description of all type of files. by the file or directory. who created this file.
Second Column: represents the number of memory blocks taken Third Column: represents owner of the file. This is the Unix user Fourth Column: represents group of the owner. Every Unux user
Fifth Column: represents file size in bytes. Sixth Column: represents date and time when this file was created
7/13/12
3030
7/13/12
3131
Meta Characters
Meta characters have special meaning in Unix. For example *
and ? are metacharacters. We use * to match 0 or more characters, a question mark ? matches with single character.
Ex
[amrood]$ls ch*.doc
Displays all the files whose name start with ch and ends with .doc
7/13/12
3232
Hidden Files:
An invisible file is one whose first character is the dot or
period character (.). UNIX programs (including the shell) use most of these files to store configuration information.
Some common examples of hidden files include the files: .profile: the Bourne shell ( sh) initialization script .kshrc: the Korn shell ( ksh) initialization script .cshrc: the C shell ( csh) initialization script .rhosts: the remote shell configuration file To list invisible files, specify the -a option to ls:
7/13/12
3333
Creating Files:
You can use vi editor to create ordinary files on any Unix system.
[amrood]$ vi filename
Above command would open a file with the given filename. You
would need to press key i to come into edit mode. Once you are in edit mode you can start writing your content in the file as below:
Once you are done, do the following steps: Press key esc to come out of edit mode. Press two keys Shift + ZZ together to come out of the file
completely.
7/13/12
3434
Editing Files
You can edit an existing file using vi editor. We would cover
this in detail in a separate tutorial. But in short, you can open existing file as follows:
vi filename
Once file is opened, you can come in edit mode by pressing key i
and then you can edit file as you like. If you want to move here and there inside a file then first you need to come out of edit mode by pressing key esc and then you can use following keys to move inside a file:
l key to move to the right side. h key to move to the left side.
7/13/12
3535
So using above keys you can position your cursor where ever you
want to edit. Once you are positioned then you can use i key to come in edit mode. Edit the file, once you are done press esc and finally two keys Shift + ZZ together to come out of the file completely.
cat filename
7/13/12
Counting Words in a File:
3636
You can use the wc command to get a count of the total number of
lines, words, and characters contained in a file. Following is the simple example to see the information about above created file:
wc filename
7/13/12
3737
Copying Files:
To make a copy of a file use the cp command. The basic syntax of
$ cp filename1 filename2
Renaming Files:
To change the name of a file use the mv command. Its basic
syntax is:
$ mv filename1 filename2
Deleting Files:
rm filename
7/13/12
3838
descriptor is 0. This is also represented as STDIN. Unix program would read default input from STDIN.
stdout : This is referred to as standard output and associated file
descriptor is 1. This is also represented as STDOUT. Unix program would write default output at STDOUT
stderr : This is referred to as standard error and associated file
descriptor is 2. This is also represented as STDERR. Unix program would write all the error message at STDERR.
7/13/12
3939
information. All files, whether ordinary, special, or directory, are contained in directories.
directories. This structure is often referred to as a directory tree . The tree has a single root node, the slash character ( /), and all other directories are contained below it.
Home Directory: The directory in which you find yourself when you first login
7/13/12
4040
$ cd ~username
Absolute/Relative Pathnames:
Directories are arranged in a hierarchy with root (/) at the top. The
7/13/12
4141
/etc/passwd /users/sjones/chem/notes /dev/rdsk/Os3 A pathname can also be relative to your current working directory.
Relative pathnames never begin with /. Relative to user amrood' home directory, some pathnames might look like this:
chem/notes personal/res
7/13/12
4242
Listing Directories
To list the files in a directory you can use the following syntax: $ ls dirname
the filename .. (dot dot) represent the directory one level above the current working directory, often referred to as the parent directory. directories files and use the -a option to list all the files and the -l option provides the long listing, this is the result.
7/13/12
4343
[amrood]$ls -la drwxrwxr-x drwxr-xr-x ----------rwxr-xr-x [amrood]$ 1 1 4 teacher class 2048 Jul 16 17.56 . 1536 Jul 13 14:18 ..
60 root
teacher class 4210 May 1 08:27 .profile teacher class 1948 May 12 13:42 memo
7/13/12
4444
secure method for storing files. Every file in UNIX has the following attributes: actions the owner of the file can perform on the file.
Owner permissions: The owner's permissions determine what Group permissions: The group's permissions determine what
actions a user, who is a member of the group that a file belongs to, can perform on the file.
Other (world) permissions: The permissions for others indicate
7/13/12
4545
-rwxr-xr-- 1 amrood users 1024 Nov 2 00:10 myfile drwxr-xr--- 1 amrood users 1024 Nov 2 00:10 mydir
Here first column represents different access mode ie. permission
position in the group denotes a specific permission, in this order: read (r), write (w), execute (x): file's owner. For example -rwxr-xr-- represents that onwer has read (r), write (w) and execute (x) permission. permissions for the group to which the file belongs. For example -rwxr-xr-- represents that group has read (r) and execute (x) permission but no write permission.
The first three characters (2.4) represent the permissions for the
7/13/12
4646
of a Unix system. The basic building blocks of Unix permissions are the read, write, and execute permissions, which are described below:
Read: Grants the capability to read ie. view the contents of the file. Write: Grants the capability to modify, or remove the content of the file. Execute: User with execute permissions can run a file as a program.
7/13/12
4747
manner as any other file. There are a few differences that need to be mentioned:
Read: Access to a directory means that the user can read the contents.
Write: Access means that the user can add or delete files to the contents
of the directory.
7/13/12
4848
Changing Permissions:
To change file or directory permissions, you use the chmod
(change mode) command. There are two ways to use chmod: symbolic mode and absolute mode.
Using chmod in Symbolic Mode: The easiest way for a beginner to modify file or directory
permissions is to use the symbolic mode. With symbolic permissions you can add, delete, or specify the permission set you want by using the operators in the following table.
7/13/12
4949
Then each example chmod command from the preceding table is run on
[amrood]$chmod o+wx testfile [amrood]$ls -l testfile -rwxrwxrwx 1 amrood users 1024 Nov 2 00:10 testfile [amrood]$chmod u-x testfile [amrood]$ls -l testfile -rw-rwxrwx 1 amrood users 1024 Nov 2 00:10 testfile [amrood]$chmod g=r-x testfile [amrood]$ls -l testfile -rw-r-xrwx 1 amrood users 1024 Nov 2 00:10 testfile
Here's how you could combine these commands on a single line:
[amrood]$chmod o+wx,u-x,g=r-x testfile
7/13/12
Using chmod with Absolute Permissions:
5050
and the total of each set of permissions provides a number for that set
7/13/12
5151
[amrood]$ chmod 755 testfile [amrood]$ls -l testfile -rwxr-xr-x 1 amrood users 1024 Nov 2 00:10 testfile [amrood]$chmod 743 testfile [amrood]$ls -l testfile -rwxr---wx 1 amrood users 1024 Nov 2 00:10 testfile [amrood]$chmod 043 testfile [amrood]$ls -l testfile ----r---wx 1 amrood users 1024 Nov 2 00:10 testfile
7/13/12
Changing Owners and Groups:
5252
group ID to each user. All the permissions mentioned above are also assigned based on Owner and Groups. of files:
Two commands are available to change the owner and the group
chgrp: The chgrp command stands for "change group" and is used
Changing Ownership:
7/13/12
5353
The value of user can be either the name of a user on the system
Following example:
Changes the owner of the given file to the user amrood. NOTE: The super user, root, has the unrestricted capability to
change the ownership of a any file but normal users can change only the owner of files they own.
7/13/12
5454
Following example:
7/13/12
5555
As a regular user, you do not have read or write access to this file
for security reasons, but when you change your password, you need to have write permission to this file. This means that the passwd program has to give you additional permissions so that you can write to the file /etc/shadow.
known as the Set User ID ( SUID) and Set Group ID ( SGID) bits. inherit the permissions of that program's owner. Programs that do not have the SUID bit set are run with the permissions of the user who started the program. group permissions, but instead your group will be changed just for
When you execute a program that has the SUID bit enabled, you
This is true for SGID as well. Normally programs execute with your
7/13/12
[amrood]$ ls -l /usr/bin/passwd
5656
Which shows that the SUID bit is set and that the command is
owned by the root. A capital letter S in the execute position instead of a lowercase s indicates that the execute bit is not set. removed if you are one of the following users:
If the sticky bit is enabled on the directory, files can only be The owner of the sticky directory The owner of the file being removed The super user, root To set the SUID and SGID bits for any directory try the following:
[amrood]$ chmod ug+s dirname [amrood]$ ls -l
7/13/12
5757
Unix - Environment
An important Unix concept is the environment, which is defined by
environment variables. Some are set by the system, others by you, yet others by the shell, or any program that loads another program. value assigned could be a number, text, filename, device, or any other type of data. value using echo command:
For example, first we set a variables TEST and then we access its
7/13/12
5858
Note that environment variables are set without using $ sign but
while accessing them we use $sign as prefix. These variables retain their values until we come out shell.
When you login to the system, the shell undergoes a phase called
initialization to set up various environment. This is usually a two step process that involves the shell reading the following files:
/etc/profile profile
message is displayed.
The shell checks to see whether the file .profile exists in your home
directory. Your home directory is the directory that you start out in after you log in.
If it exists, the shell reads it; otherwise, the shell skips it. No error
7/13/12
5959
Bourne type shells, but some additional files are used by bash and ksh.
your UNIX machine and contains shell initialization information required by all users on a system.
The file .profile is under your control. You can add as much shell
customization information as you want to this file. The minimum set of information that you need to configure includes
The type of terminal you are using A list of directories in which to locate commands A list of variables effecting look and feel of your terminal
7/13/12
6060
configured by either the login or getty programs. Sometimes, the autoconfiguration process guesses your terminal incorrectly. look strange, or you might not be able to interact with the shell properly. to the lowest common denominator as follows:
[amrood]$TERM=vt100 [amrood]$
To make sure that this is not the case, most users set their terminal
The PATH variable specifies the locations in which the shell should
7/13/12
Here each of the individual entries separated by the colon
6161
character, :, are directories. If you request the shell to execute a command and it cannot find it in any of the directories given in the PATH variable, a message similar to the following appears:
[amrood]$hello hello: not found [amrood]$
stored in the variable PS1. You can change this variable to be anything you want. As soon as you change it, it'll be used by the shell from that point on.
For example, if you issued the command:
7/13/12
=>PS1="[\u@\h \w]\$" [root@ip-72-167-112-17 /var/www/tutorialspoint/unix]$ [root@ip-72-167-112-17 /var/www/tutorialspoint/unix]$
6262
The result of this command is that the prompt displays the user's
There are quite a few escape sequences that can be used as value
arguments for PS1; try to limit yourself to the most critical so that the prompt does not overwhelm you with information.
7/13/12
6363
You can make the change yourself every time you log in, or you
can have the change made automatically in PS1 by adding it to your .profile file. display a secondary prompt and wait for you to complete the command and hit Enter again. be changed by re-defining the PS2 shell variable:
The default secondary prompt is > (the greater than sign), but can Following is the example which uses the default secondary prompt:
prompt:
$ PS2="secondary prompt->"
7/13/12
6464
Environment Variables:
Following is the partial list of important environment variables.
7/13/12
6565
variables:
7/13/12
6666
its basic commands. This tutorial would cover few very basic but important Unix utilities which you would use in your day to day life.
Printing Files:
Before you print a file on a UNIX system, you may want to reformat it to
adjust the margins, highlight some words, and so on. Most files can also be printed without reformatting, but the raw printout may not look quite as nice.
Many versions of UNIX include two powerful text formatters, nroff and
troff. They are not covered in this tutorial but you would quit a lot material on the net for these utilities.
7/13/12
6767
The pr Command:
The pr command does minor formatting of files on the terminal
screen or for a printer. For example, if you have a long list of names in a file, you can format it onscreen into two or more columns.
pr option(s) filename(s)
The pr changes the format of the file only on the screen or on the
printed copy; it doesn't modify the original file. Following table lists some pr options:
7/13/12
6868
Before using pr, here are the contents of a sample file named food
7/13/12
6969
screen display. Once you are ready with formatting using pr command, you can use any of these commands to print your file on printer connected with your computer.
your site. To print a file named food on the default printer, use the lp or lpr command, as in this example:
The lp command shows an ID that you can use to cancel the print
7/13/12
7070
IDs, owners, file sizes, when the jobs were sent for printing, and the status of the requests. your own. Requests are shown in the order they'll be printed:
Use lpstat -o if you want to see all output requests rather than just
7/13/12
7171
The lprm terminates lpr requests. You can specify either the ID of the request (displayed by lp or lpq) or the name of the printer.
7/13/12
7272
Sending Email:
You use the Unix mail command to send and receive mail. Here is
"control-D" at the beginning of a line. To stop simply type dot (.) as follows:
7/13/12
7373
You can send a complete file using a redirect < operator as follows:
email as follows:
[amrood]$mail no email
7/13/12
7474
one program becomes the input of the next program. Two or more commands connected in this way form a pipe.
To make a pipe, put a vertical bar (|) on the command line between
two commands.
some operation on that input, and writes the result to the standard output, it is referred to as a filter.
7/13/12
7575
The name "grep" derives from the ed (a UNIX line editor) command
g/re/p which means "globally search for a regular expression and print all lines containing it." and/or special characters used for pattern matching.
A regular expression is either some plain text (a word, for example) The simplest use of grep is to look for a pattern consisting of a
single word. It can be used in a pipe so that only those lines of the input files containing a given string are sent to the standard output. If you don't give grep a filename to read, it reads its standard input; that's the way all filter programs work:
[amrood]$ls -l | grep "Aug" -rw-rw-rw- 1 john doc -rw-rw-rw- 1 john doc 11008 Aug 6 14:10 ch02 8515 Aug 6 15:30 ch07
7/13/12
7676
There are various options which you can use along with grep
command:
Next, let's use a regular expression that tells grep to find lines with
"carol", followed by zero or more other characters abbreviated in a regular expression as ".*"), then followed by "Aug".
7/13/12
7777
numerically. The example below sorts the lines in the food file:
[amrood]$sort food Afghani Cuisine Bangkok Wok Big Apple Deli Isle of Java Mandalay Sushi and Sashimi Sweet Tooth Tio Pepe's Peppers [amrood]$
7/13/12
7878
previous pipe example using grep, we can further sort the files modified in August by order of size.
The following pipe consists of the commands ls, grep, and sort:
[amrood]$ls -l | grep "Aug" | sort +4n -rw-rw-r-- 1 carol doc -rw-rw-r-- 1 john doc -rw-rw-rw- 1 john doc
1605 Aug 23 07:35 macros 2488 Aug 15 10:51 intro 8515 Aug 6 15:30 ch07
7/13/12
7979
This pipe sorts all files in your directory modified in August by order
of size, and prints them to the terminal screen. The sort option +4n skips four fields (fields are separated by blanks) then sorts the lines in numeric order.
run text through more or pg as a filter, the display stops after each screenful of text. easier to read the sorted listing, pipe the output through more as follows:
[amrood]$ls -l | grep "Aug" | sort +4n | more -rw-rw-r-- 1 carol doc -rw-rw-r-- 1 john doc -rw-rw-rw- 1 john doc -rw-rw-r-- 1 john doc 1605 Aug 23 07:35 macros 2488 Aug 15 10:51 intro 8515 Aug 6 15:30 ch07 14827 Aug 9 12:40 ch03
7/13/12
8080
The screen will fill up with one screenful of text consisting of lines
sorted by order of file size. At the bottom of the screen is the more prompt where you can type a command to move through the sorted text. commands listed in the discussion of the more program.
When you're done with this screen, you can use any of the
7/13/12
8181
creates a special environment for that program. This environment contains everything needed for the system to run the program as if no other program were running on the system.
new process. When you tried out the ls command to list directory contents, you started a process. A process, in simple terms, is an instance of a running program.
number known as the pid or process ID . Each process in the system has a unique pid.
7/13/12
8282
Pids eventually repeat because all the possible numbers are used
up and the next pid rolls or starts over. At any one time, no two processes with the same pid exist in the system because it is the pid that UNIX uses to track each process.
Starting a Process:
When you start a process (run a command), there are two ways
Foreground Processes:
By default, every process that you start runs in the foreground. It
gets its input from the keyboard and sends its output to the screen.
7/13/12
8383
You can see this happen with the ls command. If I want to list all
[amrood]$ls ch*.doc
This would display all the files whose name start with ch and ends
with .doc:
ch03-2.doc ch06-2.doc
screen, and if the ls command wants any input (which it does not), it waits for it from the keyboard.
7/13/12
8484
Background Processes:
A background process runs without being connected to your
keyboard. If the background process requires any keyboard input, it waits. can run other commands; you do not have to wait until it completes to start another! ampersand ( &) at the end of the command.
This would also display all the files whose name start with ch and ends
with .doc:
Here if the ls command wants any input (which it does not), it goes into
a stop state until I move it into the foreground and give it the data from
7/13/12
8585
the job number and process ID. You need to know the job number to manipulate it between background and foreground.
If you press the Enter key now, you see the following:
ls ch*.doc &
The first line tells you that the ls command background process
7/13/12
8686
command as follows:
[amrood]$ps
PID 18358 18361 18789 TTY ttyp3 ttyp3 ttyp3 TIME 00:00:00 00:01:31 00:00:00 CMD sh abiword ps
One of the most commonly used flags for ps is the -f ( f for full) option,
[amrood]$ps -f
UID PID PPID C STIME TTY TIME CMD
7/13/12
8787
command:
7/13/12
8888
Stopping Processes:
Ending a process can be done in several different ways. Often,
from a console-based command, sending a CTRL + C keystroke (the default interrupt character) will exit the command. This works when process is running in foreground mode.
need to get its Job ID using ps command and after that you can use kill command to kill the process as follows:
[amrood]$ps -f
UID
amrood 6738 3662 0 10:23:03 pts/6 0:00 first_one amrood 6739 3662 0 10:22:54 pts/6 0:00 second_one amrood 3662 3657 0 08:10:53 pts/6 0:00 -ksh amrood 6892 3662 4 10:51:50 pts/6 0:00 ps -f
7/13/12
8989
ignores a regular kill command, you can use kill -9 followed by the process ID as follows:
(pid) and Parent process ID (ppid). Each user process in the system has a parent process.
Most of the commands that you run have the shell as their parent.
Check ps -f example where this command listed both process ID and parent process ID.
7/13/12
9090
via a SIGCHLD signal. Then the parent can do some other task or restart a new child as needed. However, sometimes the parent process is killed before its child is killed. In this case, the "parent of all processes," init process, becomes the new PPID (parent process ID). Sometime these processes are called orphan process.
with a Z state. This is a zombie, or defunct, process. The process is dead and not being used. These processes are different from orphan processes. They are the processes that has completed execution but still has an entry in the process table.
7/13/12
9191
Daemon Processes:
Daemons are system-related background processes that often run
with the permissions of root and services requests from other processes.
/dev/tty. If you do a "ps -ef" and look at the tty field, all daemons will have a ? for the tty.
background, usually waiting for something to happen that it is capable of working with, like a printer daemon is waiting for print commands.
7/13/12
9292
shows information about physical and virtual memory, CPU usage, load averages, and your busy processes.
Here is simple syntax to run top command and to see the statistics
[amrood]$top
7/13/12
9393
job number (job ID). This number is different from the process ID and is used because it is shorter.
series or at the same time, in parallel, so using the job ID is easier than tracking the individual processes.
7/13/12
9494
communicate with remote users and you also need to access remote Unix machines.
There are several Unix utilities which are especially useful for users
the network. Using this command you can check if your remote host is responding well or not.
7/13/12
9595
second. To come out of the command you can terminate it by pressing CNTRL + C keys.
[amrood]$ping google.com
PING google.com (74.125.67.100) 56(84) bytes of data. 64 bytes from 74.125.67.100: icmp_seq=1 ttl=54 time=39.4 ms 64 bytes from 74.125.67.100: icmp_seq=2 ttl=54 time=39.9 ms 64 bytes from 74.125.67.100: icmp_seq=3 ttl=54 time=39.3 ms 64 bytes from 74.125.67.100: icmp_seq=4 ttl=54 time=39.1 ms
7/13/12
9696
If a host does not exist then it would behave something like this:
upload and download your file from one computer to another computer. you to perform tasks such as:
The ftp utility has its own set of UNIX like commands which allow Connect and login to a remote host. Navigate directories. List directory contents
7/13/12
Syntax: Following is the simple syntax to use ping command:
9797
Once you are authenticated, you would have access on the home directory of the login account and you would be able to perform various commands.
7/13/12
9898
7/13/12
It should be noted that all the files would be downloaded or
9999
uploaded to or from current directories. If you want to upload your files in a particular directory then first you change to that directory and then upload required files.
7/13/12
100100
7/13/12
101101
machine and work on that machine remotely. Telnet is a utility that allows a computer user at one site to make a connection, login and then conduct work on a computer at another site. on your remotely connect machine. Here is example telnet session:
Once you are login using telnet, you can perform all the activities
7/13/12
102102
Finger may be disabled on other systems for security reasons. Following are the simple syntax to use finger command: Check all the logged in users on local machine as follows:
7/13/12
103103
7/13/12
104104
ssh utility
ssh tool is also used in case if you want to connect to remote hosts
Syntax
ssh hostname
ssh username@hostname
SCP Utility
In case if you want to copy the file from one server to another
Syntax
7/13/12
105105
best ways is using screen-oriented text editor vi. This editor enable you to edit lines in context with other lines in the file.
because:
It's usually available on all the flavors of Unix system. Its implementations are very similar across the board. It requires very few resources. It is more user friendly than any other editors like ed or ex.
7/13/12
106106
You can use vi editor to edit an existing file or to create a new file
from scratch. You can also use this editor to just read a text file.
7/13/12
107107
You will notice a tilde (~) on each line following the cursor. A tilde
represents an unused line. If a line does not begin with a tilde and appears to be blank, there is a space, tab, newline, or some other nonviewable character present.
So now you have opened one file to start with. Before proceeding
further let us understanding few minor but important concepts explained below.
7/13/12
108108
Operation Modes:
While working with vi editor you would come across following two
modes:
administrative tasks such as saving files, executing commands, moving the cursor, cutting (yanking) and pasting lines or words, and finding and replacing. In this mode, whatever you type is interpreted as a command. Everything that's typed in this mode is interpreted as input and finally it is put in the file .
Insert mode: This mode enables you to insert text into the file.
in insert mode. To come in insert mode you simply type i. To get out of insert mode, press the Esc key, which will put you back into command mode. twice, and then you'll be in command mode. You open a file using
Hint: If you are not sure which mode you are in, press the Esc key
7/13/12
109109
in insert mode. To come in insert mode you simply type i. To get out of insert mode, press the Esc key, which will put you back into command mode.
Hint: If you are not sure which mode you are in, press the Esc key
twice, and then you'll be in command mode. You open a file using vi editor and start type some characters and then come in command mode to understand the difference.
colon, and 'q', followed by return. If your file has been modified in any way, the editor will warn you of this, and not let you quit. To ignore this message, the command to quit out of vi without saving is :q!. This lets you exit vi without saving any of the changes.
7/13/12
110110
The command to save the contents of the editor is :w. You can
combine the above command with the quit command, or :wq and return.
The easiest way to save your changes and exit out of vi is the ZZ
command. When you are in command mode, type ZZ and it will do the equivalent of :wq.
name after the :w. For example, if you wanted to save the file you were working as another filename called filename2, you would type :w filename2 and return. Try it once.
7/13/12
111111
To move around within a file without affecting your text, you must
be in command mode (press Esc twice). Here are some of the commands you can use to move around one character at a time:
7/13/12
112112
There are many other ways to move within a file in vi. Remember
that you must be in command mode (press Esc twice). Here are some more commands you can use to move around the file:
7/13/12
113113
7/13/12
114114
Control Commands:
There are following useful command which you can use along with
Control Key:
7/13/12
115115
Editing Files:
To edit the file, you need to be in the insert mode. There are many
7/13/12
116116
Deleting Characters:
Here is the list of important commands which can be used to delete
number of times you want the action to occur. For example, 2x deletes two character under the cursor location and 2dd deletes
7/13/12
117117
Change Commands:
You also have the capability to change characters, words, or lines
7/13/12
118118
You can copy lines or words from one place and then you can past
7/13/12
119119
Advanced Commands:
There are some advanced commands that simplify day-to-day
7/13/12
120120
7/13/12
121121
string search, the / and ? commands are used. When you start these commands, the command just typed will be shown on the bottom line, where you type the particular string to look for.
These two commands differ only in the direction where the search
takes place:
the same or opposite direction, respectively. Some characters have special meanings while using in search command and preceded by
7/13/12
122122
entered after the command. The f and F commands search for a character on the current line only. f searches forwards and F searches backwards and the cursor moves to the position of the found character.
only, but for t, the cursor moves to the position before the character, and T searches the line backwards to the position after the character.
7/13/12
123123
Set Commands:
You can change the look and feel of your vi screen using the
following :set commands. To use these commands you have to come in command mode then type :set followed by any of the following options:
7/13/12
124124
Running Commands:
The vi has the capability to run commands from within the editor.
To run a command, you only need to go into command mode and type :! command. try to save your file to that filename, you can type :! ls and you will see the output of ls on the screen. you are returned to your vi session.
For example, if you want to check whether a file exists before you
When you press any key (or the command's escape sequence),
Replacing Text:
The substitution command (:s/) enables you to quickly replace
words or groups of words within your files. Here is the simple syntax:
:s/search/replace/g
The g stands for globally. The result of this command is that all
7/13/12
125125
gathers input from you and executes programs based on that input. When a program finishes executing, it displays that program's output.
programs, and shell scripts. There are different flavors of shells, just as there are different flavors of operating systems. Each flavor of shell has its own set of recognized commands and functions.
7/13/12
126126
Shell Prompt:
The prompt, $, which is called command prompt, is issued by the
The shell reads your input after you press Enter. It determines the
command you want executed by looking at the first word of your input. A word is an unbroken set of characters. Spaces and tabs separate words.
7/13/12
127127
Shell Types:
In UNIX there are two major types of shells:
The Bourne shell. If you are using a Bourne-type shell, the default
The C shell. If you are using a C-type shell, the default prompt is the %
character.
There are again various subcategories for Bourne Shell which are
listed as follows:
Bourne shell ( sh) Korn shell ( ksh) Bourne Again shell ( bash) POSIX shell ( sh)
7/13/12
128128
versions of UNIX. For this reason, it is the shell of choice for writing scripts to use on several different versions of UNIX.
In this tutorial, we are going to cover most of the Shell
7/13/12
129129
Shell Scripts:
The basic concept of a shell script is a list of commands, which are
listed in the order of execution. A good shell script will have comments, preceded by a pound sign, #, describing the steps.
B, loops allowing us to go through massive amounts of data, files to read and store data, and variables to read and store data, and the script may include functions.
Shell scripts and functions are both interpreted. This means they
This would be a simple text file in which we would put our all the commands and several other required constructs that tell the shell environment what to do and when to do it.
7/13/12
130130
Example Script:
would have .sh extension. Before you add anything else to your script, you need to alert the system that a shell script is being started. This is done using the shebang construct. For example:
#!/bin/sh
This tells the system that the commands that follow are to
be executed by the Bourne shell. It's called a shebang because the # symbol is called a hash, and the ! symbol is called a bang. shebang line first and then add the commands:
7/13/12
131131
Ex -----#!/bin/bash pwd ls
Shell Comments:
You can put your comments in your script as follows:
#!/bin/bash
7/13/12
132132
Now you save the above content and make this script executable
as follows:
[amrood]$chmod +x test.sh
[amrood]$./test.sh
7/13/12
133133
environment what to do and when to do it. Of course, most scripts are more complex than above one.
The shell is, after all, a real programming language, complete with
variables, control structures, and so forth. No matter how complicated a script gets, however, it is still just a list of commands executed sequentially.
Following script use the read command which takes the input from
the keyboard and assigns it as the value of the variable PERSON and finally prints it on STDOUT.
7/13/12
134134
#!/bin/sh
7/13/12
135135
The value assigned could be a number, text, filename, device, or any other type of data.
7/13/12
136136
UPPERCASE.
2_VAR -VARIABLE
7/13/12
137137
Defining Variables:
Variables are defined as follows::
variable_name=variable_value
For example:
NAME="Zara Ali
Above example defines the variable NAME and assigns it the value
"Zara Ali". Variables of this type are called scalar variables. A scalar variable can hold only one value at a time.
The shell enables you to store any value you want in a variable.
For example:
7/13/12
138138
Accessing Values:
To access the value stored in a variable, prefix its name with the
#!/bin/sh
7/13/12
139139
Read-only Variables:
the readonly command. After a variable is marked read-only, its value cannot be changed.
#!/bin/sh
7/13/12
140140
Unsetting Variables:
Unsetting or deleting a variable tells the shell to remove the
variable from the list of variables that it tracks. Once you unset a variable, you would not be able to access stored value in the variable.
is a simple example:
#!/bin/sh
7/13/12
141141
Above example would not print anything. You cannot use the unset
Variable Types:
When a shell is running, three main types of variables are present:
the current instance of the shell. It is not available to programs that are started by the shell. They are set at command prompt.
is available to any child process of the shell. Some programs need environment variables in order to function correctly. Usually a shell script defines only those environment variables that are needed by the programs that it runs.
7/13/12
142142
nonalphanumeric characters in your variable names. This is because those characters are used in the names of special Unix variables. These variables are reserved for specific functions. number, or PID, of the current shell:
[amrood]$echo $$
7/13/12
143143
7/13/12
Command-Line Arguments:
144144
parameters, with $0 pointing to the actual command, program, shell script, or function and $1, $2, $3, ...$9 as the arguments to the command.
line:
#!/bin/sh
echo "File Name: $0" echo "First Parameter : $1" echo "First Parameter : $2"
7/13/12
145145
[amrood]$./test.sh Zara Ali File Name : ./test.sh First Parameter : Zara First Parameter : Ali Quoted Values: Zara Ali Quoted Values: Zara Ali Total Number of Parameters : 2
7/13/12
146146
"$*" special parameter takes the entire list as one argument with spaces between and the "$@" special parameter takes the entire list and separates it into separate arguments.
#!/bin/sh
7/13/12
There is one sample run for the above script:
147147
Note: Here do...done is a kind of loop which we would cover in subsequent tutorial.
7/13/12
148148
Exit Status:
The $? variable represents the exit status of the previous
command.
its completion. As a rule, most commands return an exit status of 0 if they were successful, and 1 if they were unsuccessful.
reasons. For example, some commands differentiate between kinds of errors and will return various exit values depending on the specific type of failure.
7/13/12
149149
variable that can hold multiple values at the same time. Arrays provide a method of grouping a set of variables. Instead of creating a new name for each variable that is required, you can use a single array variable that stores all the other variables.
7/13/12
150150
be explained as follows.
Say that you are trying to represent the names of various students
We can use a single array to store all the above mentioned names.
Following is the simplest method of creating an array variable is to assign a value to one of its indices. This is expressed as follows:
7/13/12
151151
Here array_name is the name of the array, index is the index of the
item in the array that you want to set, and value is the value you want to set for that item.
If you are using ksh shell the here is the syntax of array
initialization:
set -A array_name value1 value2 ... Valuen
If you are using bash shell the here is the syntax of array
7/13/12
152152
Here array_name is the name of the array, and index is the index of
#!/bin/sh
7/13/12
This would produce following result:
153153
You can access all the items in an array in one of the following
ways:
${array_name[*]} ${array_name[@]}
7/13/12
154154
Here array_name is the name of the array you are interested in.
#!/bin/sh
NAME[0]="Zara" NAME[1]="Qadir" NAME[2]="Mahnaz" NAME[3]="Ayan" NAME[4]="Daisy" echo "First Method: ${NAME[*]}" echo "Second Method: ${NAME[@]}"
7/13/12
155155
tutorial is based on default shell (Bourne) so we are going to cover all the important Bourne Shell operators in the tutorial.
discuss:
Arithmetic Operators. Relational Operators. Boolean Operators. String Operators. File Test Operators.
7/13/12
156156
perform simple arithmetic but it uses external programs, either awk or the must simpler program expr.
7/13/12
There are following points to note down:
157157
inverted commas.
Arithmetic Operators:
There are following arithmatic operators supported by Bourne
Shell.
7/13/12
158158
#!/bin/sh
a=10 b=20 val=`expr $a + $b` echo "a + b : $val"
7/13/12
This would produce following result:
159159
7/13/12
160160
would be put inside square braces with one spaces around them, for example [ $a == $b ] is correct where as [$a==$b] is incorrect.
7/13/12
161161
Relational Operators:
Bourne Shell supports following relational operators which are
specific to numberic values. These operators would not work for string values unless their value is numerics.
between 10 and 20 as well as in between "10" and "20" but not in between "ten" and "twenty".
7/13/12
162162
#!/bin/sh
a=10 b=20
if [ $a -eq $b ] then echo "$a -eq $b : a is equal to b" else echo "$a -eq $b: a is not equal to b" fi
7/13/12
163163
if [ $a -gt $b ] then echo "$a -gt $b: a is greater than b" else echo "$a -gt $b: a is not greater than b" fi
if [ $a -lt $b ] then echo "$a -lt $b: a is less than b" else echo "$a -lt $b: a is not less than b" fi
7/13/12
164164
if [ $a -le $b ] then echo "$a -le $b: a is less or equal to b" else echo "$a -le $b: a is not less or equal to b" fi
10 -eq 20: a is not equal to b 10 -ne 20: a is not equal to b 10 -gt 20: a is not greater than b 10 -lt 20: a is less than b 10 -ge 20: a is not greater or equal to b
7/13/12
165165
7/13/12
166166
Bourne Shell.
Assume variable a holds 10 and variable b holds 20 then:
7/13/12
167167
Here is an example which uses all the boolean operatos: #!/bin/sh a=10 b=20 if [ $a != $b ] then echo "$a != $b : a is not equal to b" else echo "$a != $b: a is equal to b"
7/13/12 if [ $a -lt 100 -o $b -gt 100 ] then echo "$a -lt 100 -o $b -gt 100 : returns true" else echo "$a -lt 100 -o $b -gt 100 : returns false" fi
168168
if [ $a -lt 5 -o $b -gt 100 ] then echo "$a -lt 100 -o $b -gt 100 : returns true" else echo "$a -lt 100 -o $b -gt 100 : returns false" fi
7/13/12
169169
String Operators:
There are following string operators supported by Bourne Shell.
7/13/12
170170
File Test Operators: There are following operators to test various properties
whose size is 100 bytes and has read, write and execute permission on:
7/13/12
171171
7/13/12
172172
#!/bin/sh file="/var/www/tutorialspoint/unix/test.sh" if [ -r $file ] then echo "File has read access" else echo "File does not have read access" fi if [ -w $file ]
7/13/12
173173
if [ -x $file ] then echo "File has execute permission" else echo "File does not have execute permission" fi if [ -f $file ] then echo "File is an ordinary file" else echo "This is sepcial file"
7/13/12
174174
if [ -d $file ] then echo "File is a directory" else echo "This is not a directory" fi if [ -s $file ] then echo "File size is zero" else echo "File size is not zero"
7/13/12
175175
File has read access File has write permission File has execute permission File is an ordinary file This is not a directory File size is zero File exists
7/13/12
176176
to adopt one path out of the given two paths. So you need to make use of conditional statements that allow your program to make correct decisions and perform right actions.
perform different actions based on different conditions. Here we will explain following two decision making statements:
7/13/12
177177
7/13/12
178178
if...fi statement
The if...fi statement is the fundamental control statement that
Syntax:
given statement(s) are executed. If expression is false then no statement would be not executed. Most of the times you will use comparison operators while making decisions. This space is mandatory otherwise you would get syntax error.
7/13/12
179179
Example:
#!/bin/sh
a=10 b=20
7/13/12
180180
allows Shell to execute statements in more controlled way and making decision between two choices.
Syntax:
if [ expression ] then Statement(s) to be executed if expression is true else Statement(s) to be executed if expression is not true fi
Here Shell expression is evaluated. If the resulting value is true,
7/13/12
181181
Example:
If we take above example then it can be written in better way using
#!/bin/sh
a=10 b=20
if [ $a == $b ] then echo "a is equal to b" else echo "a is not equal to b"
7/13/12
182182
statement that allows Shell to make correct decision out of several conditions.
Syntax: if [ expression 1 ] then Statement(s) to be executed if expression 1 is true elif [ expression 2 ] then Statement(s) to be executed if expression 2 is true elif [ expression 3 ] then
7/13/12
183183
series of if statements, where each if is part of the else clause of the previous statement. Here statement(s) are executed based on the true condition, if non of the condition is true then else block is executed.
Example:
7/13/12
184184
branch. However, this is not always the best solution, especially when all of the branches depend on the value of a single variable. this situation, and it does so more efficiently than repeated if...elif statements. here:
Syntax:
The basic syntax of the case...esac statement is to give an
expression to evaluate and several different statements to execute based on the value of the expression.
7/13/12
185185
case word in pattern1) Statement(s) to be executed if pattern1 matches ;; pattern2) Statement(s) to be executed if pattern2 matches ;; pattern3) Statement(s) to be executed if pattern3 matches ;; esac
Here the string word is compared against every pattern until a match is found. The statement(s) following the matching pattern executes.
7/13/12
186186
program flow should jump to the end of the entire case statement. This is similar to break in the C programming language.
Example:
#!/bin/sh
FRUIT="kiwi"
7/13/12
187187
arguments as follows:
#!/bin/sh
option="${1}" case ${option} in -f) FILE="${2}" echo "File name is $FILE" ;; -d) DIR="${2}" echo "Dir name is $DIR" ;; *)
7/13/12
188188
7/13/12
189189
7/13/12
190190
execute a set of commands repeatedly. In this tutorial, you would examine the following types of loops available to shell programmers:
The while loop The for loop The until loop The select loop
7/13/12
191191
repeatedly until some condition occurs. It is usually used when you need to manipulate the value of a variable repeatedly.
Syntax:
given statement(s) are executed. If command is false then no statement would be not executed and program would jump to the next line after done statement.
7/13/12
192192
a=0
7/13/12
193193
Syntax: for var in word1 word2 ... wordN do Statement(s) to be executed for every word. done
sequences of characters separated by spaces (words). Each time the for loop executes, the value of the variable var is set to the next word in the list of words, word1 to wordN.
7/13/12
194194
Example:
Here is a simple example that uses for loop to span through the
#!/bin/sh
7/13/12
195195
with .bash and available in your home. I'm executing this script from my root:
#!/bin/sh
7/13/12
196196
a set of commands while some condition is true. Sometimes you need to execute a set of commands until a condition is true.
Syntax:
Here Shell command is evaluated. If the resulting value is false, given statement(s) are executed. If command is true then no statement would be not executed and program would jump to the next line after done statement.
7/13/12
Example:
197197
Here is a simple example that uses the until loop to display the
#!/bin/sh
a=0
7/13/12
198198
from which users can select options. It is useful when you need to ask the user to choose one or more items from a list of choices.
Syntax:
select var in word1 word2 ... wordN do Statement(s) to be executed for every word. done
sequences of characters separated by spaces (words). Each time the for loop executes, the value of the variable var is set to the next word in the list of words, word1 to wordN.
7/13/12
199199
the loop. This loop was introduced in ksh and has been adapted into bash. It is not available in sh.
Example:
Here is a simple example to let the user select a drink of choice:
#!/bin/ksh
select DRINK in tea cofee water juice appe all none do case $DRINK in tea|cofee|water|all) echo "Go to canteen" ;;
7/13/12
200200
The menu presented by the select loop looks like the following:
[amrood]$./test.sh 1) tea 2) cofee 3) water 4) juice 5) appe 6) all 7) none #? juice Available at home #? none [amrood]$
7/13/12
201201
You can change the prompt displayed by the select loop by altering
[amrood]$PS3="Please make a selection => " ; export PS3 [amrood]$./test.sh 1) tea 2) cofee 3) water 4) juice 5) appe 6) all 7) none Please make a selection => juice Available at home
7/13/12
202202
Nesting Loops:
All the loops support nesting concept which means you can put
one loop inside another similar or different loops. This nesting can go upto unlimited number of times based on your requirement.
while loop.
7/13/12
203203
Syntax:
while command1 ; # this is loop1, the outer loop do Statement(s) to be executed if command1 is true
while command2 ; # this is loop2, the inner loop do Statement(s) to be executed if command2 is true done
7/13/12
204204
Example:
Here is a simple example of loop nesting, let's add another
countdown loop inside the loop that you used to count to nine:
#!/bin/sh
a=0 while [ "$a" -lt 10 ] do b="$a" while [ "$b" -ge 0 ] # this is loop2 do echo -n "$b " b=`expr $b - 1` done # this is loop1
7/13/12
205205
accomplish different tasks. Sometimes you need to stop a loop or skip iterations of the loop.
loop that executes forever without terminating executes an infinite number of times. For this reason, such loops are called infinite loops.
7/13/12
Example:
206206
Here is a simple example that uses the while loop to display the
#!/bin/sh
a=10
7/13/12
207207
entire loop, after completing the execution of all of the lines of code up to the break statement. It then steps down to the code following the end of the loop.
Syntax:
The following break statement would be used to come out of a
loop:
break
The break command can also be used to exit from a nested loop
7/13/12
Example:
208208
as soon as a becomes 5:
#!/bin/sh
a=0
7/13/12
209209
Here is a simple example of nested for loop. This script breaks out
#!/bin/sh
for var1 in 1 2 3 do for var2 in 0 5 do if [ $var1 -eq 2 -a $var2 -eq 0 ] then break 2 else echo "$var1 $var2" fi
7/13/12
210210
that it causes the current iteration of the loop to exit, rather than the entire loop.
This statement is useful when an error has occurred but you want
Syntax:
continue
continue n
7/13/12
211211
Example:
The following loop makes use of continue statement which returns from the continue statement and start processing next statement:
#!/bin/sh
NUMS="1 2 3 4 5 6 7"
for NUM in $NUMS do Q=`expr $NUM % 2` if [ $Q -eq 0 ] then echo "Number is an even number!!"
7/13/12
212212
What is Substitution?
The shell performs substitution when it encounters an expression
Example:
Following is the example, while printing value of the variable its
#!/bin/sh
7/13/12
213213
Value of a is 10\n
command:
escapes (default).
7/13/12
214214
Command Substitution:
performs a given set of commands and then substitutes their output in the place of the commands.
as:
`command`
7/13/12
215215
Example:
Command substitution is generally used to assign the output of a command to a variable. Each of the following examples demonstrate command substitution:
#!/bin/sh
7/13/12
216216
Variable Substitution:
Variable substitution enables the shell programmer to manipulate
7/13/12
Example:
217217
substitution:
#!/bin/sh
7/13/12
This would produce following result:
218218
Variable is not set 1 - Value of var is Variable is not set 2 - Value of var is Variable is not set
3 - Value of var is This is default value 4 - Value of var is Prefix Prefix 5 - Value of var is Prefix
7/13/12
219219
The Metacharacters:
meaning while using them in any Shell Script and causes termination of a word unless quoted.
directory and an * would match more than one characters. Here is a list of most of the shell special characters (also called metacharacters):
preceding it with a \.
7/13/12
Example:
Following is the example which show how to print a * or a ?:
220220
#!/bin/sh
7/13/12
This would produce following result:
221221
Hello; Word
#!/bin/sh
7/13/12
222222
send the resulting output back to your terminal. A command normally reads its input from a place called standard input, which happens to be your terminal by default. Similarly, a command normally writes its output to standard output, which is also your terminal by default.
Output Redirection:
The output from a command normally intended for standard output
can be easily diverted to a file instead. This capability is known as output redirection:
writes its output to standard output, the output of that command will be written to file instead of your terminal: output of the command in users file.
223223
Notice that no output appears at the terminal. This is because the output has been redirected from the default standard output device (the terminal) into the specified file. If you would check users file then it would have complete content:
[amrood]$ cat users oko ai ruth pat steve tty01 Sep 12 07:30 tty15 Sep 12 13:32 tty21 Sep 12 10:10 tty24 Sep 12 13:07 tty25 Sep 12 13:03
[amrood]$
7/13/12
224224
You can use >> operator to append the output in an existing file as follows:
[amrood]$ echo line 2 >> users [amrood]$ cat users line 1 line 2 [amrood]$
7/13/12
225225
Input Redirection:
Just as the output of a command can be redirected to a file,
so can the input of a command be redirected from a file. As the greater-than character > is used for output redirection, the less-than character < is used to redirect the input of a command.
The commands that normally take their input from standard
input can have their input redirected from a file in this manner. For example, to count the number of lines in the file users generated above, you can execute the command as follows:
[amrood]$ wc -l users
7/13/12
226226
two forms of the wc command. In the first case, the name of the file users is listed with the line count; in the second case, it is not.
the file users. In the second case, it only knows that it is reading its input from standard input so it does not display file name.
7/13/12
227227
want the output displayed to the screen. In such cases you can discard the output by redirecting it to the file /dev/null:
The file /dev/null is a special file that automatically discards all its input.
7/13/12
228228
Shell Functions
Functions enable you to break down the overall functionality of a
script into smaller, logical subsections, which can then be called upon to perform their individual task when it is needed.
create code reuse. Code reuse is an important part of modern object-oriented programming principles.
7/13/12
229229
Creating Functions:
To declare a function, simply use the following syntax:
will use to call it from elsewhere in your scripts. The function name must be followed by parentheses, which are followed by a list of commands enclosed within braces.
7/13/12
230230
Example:
Following is the simple example of using function:
#!/bin/sh
7/13/12
231231
while calling those function. These parameters would be represented by $1, $2 and so on.
Zara and Ali and then we capture and print these parameters in the function. #!/bin/sh # Define your function here Hello () {
7/13/12
232232
effect is not only to terminate execution of the function but also of the shell program that called the function.
If you instead want to just terminate execution of the
return code
7/13/12
233233
Example:
Following function returns a value 1:
#!/bin/sh # Define your function here Hello () { echo "Hello World $1 $2" return 10 } # Invoke your function
7/13/12
234234
Nested Functions:
One of the more interesting features of functions is that they can
call themselves as well as call other functions. A function that calls itself is known as a recursive function.
#!/bin/sh
# Calling one function from another number_one () { echo "This is the first function speaking..." number_two }
7/13/12
235235
your .profile so that they'll be available whenever you log in and you can use them at command prompt.
test.sh, and then execute the file in the current shell by typing:
[amrood]$. test.sh
7/13/12
236236
all its options, there has been online help available since Unix's earliest days.
Unix's version of help files are called man pages. If you know any
command name but you do not know how to use it, then Man Pages are here to help you at every step.
Syntax: Here is the simple command to get the detail of any Unix command
7/13/12
237237
Example:
Now you imagine any command for which you want to get help.
Assuming you want to know about pwd then you simply need to use the following command:
$man pwd
The above command would open a help for you which would give
you complete information about pwd command. Try it yourself at your command prompt to get more detail on
You can get complete detail on man command itself using the following
command:
$man man
7/13/12
238238
several sequences of characters. Regular expressions are used by several different Unix commands, including ed, sed, awk, grep, and, to a more limited extent, vi.
This tutorial would teach you how to use regular expression along
with sed.
Here sed stands for stream editor is a stream oriented editor which
Thus all the input you feed into it passes through and goes to
7/13/12
239239
Invoking sed:
Before we start, let us take make sure you have a local copy of
-n, --quiet, --silent suppress automatic printing of pattern space -e script, --expression=script ...............................
7/13/12
240240
/pattern/action
commands given in the following table. If pattern is omitted, action is performed for every line as we have seen above.
The slash characters ( /) that surround the pattern are required
7/13/12
241241
can instruct sed to read the data from a file, as in the following example. previous Try It Out, without the cat command:
7/13/12
242242
either particular locations in a file or a range where a particular editing command should be applied. When sed encounters no addresses, it performs its operations on every line in the file.
[amrood]$ cat /etc/passwd | sed '1d' |more daemon:x:1:1:daemon:/usr/sbin:/bin/sh bin:x:2:2:bin:/bin:/bin/sh sys:x:3:3:sys:/dev:/bin/sh sync:x:4:65534:sync:/bin:/bin/sync games:x:5:60:games:/usr/games:/bin/sh man:x:6:12:man:/var/cache/man:/bin/sh mail:x:8:8:mail:/var/mail:/bin/sh
7/13/12
243243
Notice that the number 1 is added before the delete edit command.
This tells sed to perform the editing command on the first line of the file. In this example, sed will delete the first line of /etc/password and print the rest of the file.
[amrood]$ cat /etc/passwd | sed '1, 5d' |more games:x:5:60:games:/usr/games:/bin/sh man:x:6:12:man:/var/cache/man:/bin/sh mail:x:8:8:mail:/var/mail:/bin/sh news:x:9:9:news:/var/spool/news:/bin/sh backup:x:34:34:backup:/var/backups:/bin/sh
7/13/12
Try out the following address ranges:
244244
Note: While using p action, you should use -n option to avoid repetition
7/13/12
245245
that you specify with any other string that you specify.
To substitute one string with another, you need to have some way
of telling sed where your first string ends and the substitution string begins.
7/13/12
246246
[amrood]$ cat /etc/passwd | sed 's/root/amrood/g' amrood:x:0:0:amrood user:/amrood:/bin/sh daemon:x:1:1:daemon:/usr/sbin:/bin/sh bin:x:2:2:bin:/bin:/bin/sh sys:x:3:3:sys:/dev:/bin/sh ...........................
Substitution Flags:
There are a number of other useful flags that can be passed in
addition to the g flag, and you can specify more than one at a time.
7/13/12
247247
includes the forward slash character. In this case, you can specify a different separator by providing the designated character after the s.
7/13/12
248248
Address Substitution:
If you want to substitute the string sh with the string quiet only on
[amrood]$ cat /etc/passwd | sed '10s/sh/quiet/g' root:x:0:0:root user:/root:/bin/sh daemon:x:1:1:daemon:/usr/sbin:/bin/sh bin:x:2:2:bin:/bin:/bin/sh sys:x:3:3:sys:/dev:/bin/sh sync:x:4:65534:sync:/bin:/bin/sync games:x:5:60:games:/usr/games:/bin/sh man:x:6:12:man:/var/cache/man:/bin/sh mail:x:8:8:mail:/var/mail:/bin/sh news:x:9:9:news:/var/spool/news:/bin/sh
7/13/12
249249
partition is a container for information and can span an entire hard drive if desired.
Your hard drive can have various partitions which usually contains
only one file system, such as one file system housing the / file system or another containing the /home file system.
One file system per partition allows for the logical maintenance and
7/13/12
250250
Directory Structure:
Unix uses a hierarchical file system structure, much like an upside-
down tree, with root (/) at the base of the file system and all other directories spreading from there.
7/13/12
251251
begin navigating to the files you need. The following are commands you'll use to navigate the system:
7/13/12
252252
The df Command:
The first way to manage your partition space is with the df (disk
free) command. The command df -k (disk free) displays the disk space usage in kilobytes, as shown below:
used, and avail columns as well as 0% for capacity. These are special (or virtual) file systems, and although they reside on the disk under /, by themselves they do not take up disk space.
7/13/12
253253
You can use the -h (human readable) option to display the output in
The du Command:
The du (disk usage) command enables you to specify directories to
a particular directory is taking. Following command would display number of blocks consumed by each directory. A single block may take either 512 Bytes or 1 Kilo Byte depending on your system.
7/13/12
254254
7/13/12
255255
To see what is currently mounted (available for use) on your system, use this command:
[amrood]$ mount /dev/vzfs on / type reiserfs (rw,usrquota,grpquota) proc on /proc type proc (rw,nodiratime) devpts on /dev/pts type devpts (rw) [amrood]$
(such as CD-ROM drives, remote network drives, and floppy drives) are located. If you need to mount a file system, you can use the mount command with the following syntax:
7/13/12
256256
that you want to mount it to /mnt/cdrom. Refer to the mount man page for more specific information or type mount -h at the command line for help information.
After mounting, you can use the cd command to navigate the newly
7/13/12
257257
The mount command enables you to access your file systems, but
on most modern Unix systems, the automount function makes this process invisible to the user and requires no intervention.
7/13/12
258258
complete and unfettered control of the system. A superuser can run any commands without any restriction. This user should be assumed as a system administrator. operation of system-specific components for example mail accounts and the sshd accounts. These accounts are usually needed for some specific function on your system, and any modifications to them could adversely affect the system.
system for users and groups of users. General users are typically assigned to these accounts and usually have limited access to critical system files and directories.
7/13/12
259259
number of accounts. Every account would be a part of any group account. Unix groups plays important role in handling file permissions and process management.
file holds the majority of information about accounts on the Unix system. account. Not all the system support this file. account.
/etc/shadow: Holds the encrypted password of the corresponding /etc/group: This file contains the group information for each /etc/gshadow: This file contains secure group account information.
7/13/12
260260
Create a Group
You would need to create groups before creating any account
otherwise you would have to use existing groups at your system. You would have all the groups listed in /etc/groups file.
All the default groups would be system account specific groups and
it is not recommended to use them for ordinary accounts. So following is the syntax to create a new group account:
7/13/12
groupadd [-g gid [-o]] [-r] [-f] groupname
261261
7/13/12
262262
Modify a Group:
To modify a group, use the groupmod syntax:
7/13/12
263263
Delete a Group:
To delete an existing group, all you need are the groupdel
command and the group name. To delete the financial group, the command is:
This removes only the group, not any files associated with that
7/13/12
264264
Create an Account
Let us see how to create a new account on your Unix system.
7/13/12
265265
setting its home directory to /home/mcmohd and group as developers. This user would have Korn Shell assigned to it.
mcmohd
Once an account is created you can set its password using the
passwd command
7/13/12
266266
Modify an Account:
The usermod command enables you to make changes to an
existing account from the command line. It uses the same arguments as the useradd command, plus the -l argument, which allows you to change the account name.
and to change home directory accordingly, you would need to issue following command:
7/13/12
267267
Delete an Account:
The userdel command can be used to delete an existing user. This
There is only one argument or option available for the command: .r,
If you want to keep her home directory for backup purposes, omit
the -r option. You can remove the home directory as needed at a later time.
7/13/12
268268
to some of the free tools available to monitor and manage performance on UNIX systems, and to provide a guideline on how to diagnose and fix performance problems in Unix environment.
and tuned
CPU
Memory Disk space Communications lines I/O Time Network Time Applications programs
7/13/12
269269
Peformance Components:
There are following major five component where total system time
goes:
in the user state. It includes time spent executing library calls, but does not include time spent in the kernel on its behalf.
System state CPU
This is the amount of time the CPU spends in the system state on
behalf of this program. All I/O routines require kernel services. The programmer can affect this value by the use of blocking for I/O transfers.
I/O Time and Network Time
These are the amount of time spent moving data and servicing I/O
requests
Virtual Memory Performance
7/13/12
270270
Peformance Tools:
Unix provides following important tools to measure and fine tune
7/13/12
271271
important event has occurred. The events can vary from user requests to illegal memory access errors. Some signals, such as the interrupt signal, indicate that a user has asked the program to do something that is not in the usual flow of control.
The following are some of the more common signals you might
7/13/12
272272
List of Signals:
There is an easy way to list down all the signals supported by your
system. Just issue kill -l command and it would display all the supported signals: Linux.
7/13/12
273273
Default Actions:
Every signal has a default action associated with it. The default
action for a signal is the action that a script or program performs when it receives a signal.
Sending Signals:
There are several methods of delivering signals to a program or
script. One of the most common is for a user to type CONTROL-C or the INTERRUPT key while a script is executing.
7/13/12
274274
When you press the Ctrl+C key a SIGINT is sent to the script and
The other common method for delivering signals is to use the kill
and pid is the process ID that the signal should be sent to. For Example:
with process ID 1001. To send a kill signal to the same process use
7/13/12
275275
Trapping Signals:
When you press the Ctrl+C or Break key at your terminal during
execution of a shell program, normally that program is immediately terminated, and your command prompt returned. This may not always be desirable. For instance, you may end up leaving a bunch of temporary files that won't get cleaned up. the following syntax:
Trapping these signals is quite easy, and the trap command has
defined function, and signal can be a list of any number of signals you want to trap.
7/13/12
276276
can remove some files and then exit if someone tries to abort the program from the terminal:
From the point in the shell program that this trap is executed, the
two files work1$$ and dataout$$ will be automatically removed if signal number 2 is received by the program.
executed, you can be assured that these two files will be cleaned up. The exit command that follows the rm is necessary because without it execution would continue in the program at the point that it left off when the signal was received.
7/13/12
Signal number 1 is generated for hangup: Either someone
277277
You can modify the preceding trap to also remove the two specified
Now these files will be removed if the line gets hung up or if the
contain more than one command. Also note that the shell scans the command line at the time that the trap command gets executed and also again when one of the listed signals is received.
7/13/12
278278
be substituted at the time that the trap command is executed. If you wanted this substitution to occur at the time that either signal 1 or 2 was received you can put the commands inside single quotes:
Ignoring Signals:
If the command listed for trap is null, the specified signal will be
$ trap '' 2
to ignore certain signals when performing some operation that you don't want interrupted. You can specify multiple signals to be
7/13/12
279279
ignored and is not equivalent to writing the following, which has a separate meaning of its own:
$ trap 2
However, if you specify an action to be taken on receipt of a signal, all subshells will still take the default action on receipt of that signal.
Resetting Traps:
After you've changed the default action to be taken on receipt of a
signal, you can change it back again with trap if you simply omit the first argument; so
7/13/12
280280
Thank You