Ual Command.: Man Man
Ual Command.: Man Man
man man This is help command, and will explains you about online manual pages you can also
use man in conjunction with any command to learn more about that command for example.
man ls will explain about the ls command and how you can use it.
man -k pattern command will search for the pattern in given command.
Banner command.
banner prints characters in a sort of ascii art poster, for example to print wait in big letters. I will
type
banner wait at unix command line or in my script. This is how it will look.
# # ## # #####
# # # # # #
# # # # # #
# ## # ###### # #
## ## # # # #
# # # # # #
Cal command
cal command will print the calander on current month by default. If you want to print calander of
august of 1965. That's eightht month of 1965.
cal 8 1965 will print following results.
August 1965
S M Tu W Th F S
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
Clear command
clear command clears the screen and puts cursor at beginning of first line.
Tty command
Tty command will display your terminal. Syntax is
tty options
Options
Pwd command.
pwd command will print your home directory on screen, pwd means print working directory.
/u0/ssb/sandeep
is output for the command when I use pwd in /u0/ssb/sandeep directory.
Ls command
ls command is most widely used command and it displays the contents of directory.
options
ls will list all the files in your home directory, this command has many options.
ls -l will list all the file names, permissions, group, etc in long format.
ls -a will list all the files including hidden files that start with . .
ls -lt will list all files names based on the time of creation, newer files bring first.
Mkdir command.
mkdir sandeep will create new directory, i.e. here sandeep directory is created.
Cd command.
cd sandeep will change directory from current directory to sandeep directory.
Use pwd to check your current directory and ls to see if sandeep directory is there or not.
You can then use cd sandeep to change the directory to this new directory.
Cat command
cat cal.txt cat command displays the contents of a file here cal.txt on screen (or standard out).
Head command.
head filename by default will display the first 10 lines of a file.
If you want first 50 lines you can use head -50 filename or for 37 lines head -37 filename and so
forth.
Tail command.
tail filename by default will display the last 10 lines of a file.
If you want last 50 lines then you can use tail -50 filename.
More command. more command will display a page at a time and then wait for input which is
spacebar. For example if you have a file which is 500 lines and you want to read it all. So you
can use
more filename
Wc command
wc command counts the characters, words or lines in a file depending upon the option.
Options
Cp command.
cp command copies a file. If I want to copy a file named oldfile in a current directory to a file
named newfile in a current directory.
cp oldfile newfile
If I want to copy oldfile to other directory for example /tmp then
Mv command.
mv command is used to move a file from one directory to another directory or to rename a file.
Some examples:
Ln command.
Instead of copying you can also make links to existing files using ln command.
If you want to create a link to a file called coolfile in /usr/local/bin directory then you can enter
this command.
ln mycoolfile /usr/local/bin/coolfile
Some examples:
ln -s fileone filetwo will create a symbolic link and can exist across machines.
Rm command.
To delete files use rm command.
Options:
Rmdir command.
rmdir command will remove directory or directories if a directory is empty.
Options:
rm -r directory_name will remove all files even if directory is not empty.
Cmp command.
cmp command compares the two files. For exmaple I have two different files fileone and filetwo.
Grep Command
grep command is the most useful search command. You can use it to find processes running on
system, to find a pattern in a file, etc. It can be used to search one or more files to match an
expression.
It can also be used in conjunction with other commands as in this following example, output of
ps command is passed to grep command, here it means search all processes in system and find
the pattern sleep.
ps -ef | grep sleep will display all the sleep processes running in the system as follows.
Some Examples:
find /work -name chapter1 -print will list all files named chapter1 in /work directory.
Vi editor.
vi command launches a vi sual editor. To edit a file type
vi filename
vi editor is a default editor of all Unix systems. It has several modes. In order to write characters
you will need to hit i to be in insert mode and then start typing. Make sure that your terminal has
correct settings, vt100 emulation works good if you are logged in using pc.
Once you are done typing then to be in command mode where you can write/search/ you need to
hit :w filename to write
and in case you are done writing and want to exit
:w! will write and exit.
options:
System Status
Chmod command.
chmod command is used to change permissions on a file.
for example if I have a text file with calender in it called cal.txt.
initially when this file will be created the permissions for this file depends upon umask set in
your profile files. As you can see this file has 666 or -rw-rw-rw attributes.
ls -la cal.txt
In this line above I have -rw-rw-rw- meaning respectively that owner can read and write file,
member of the owner's group can read and write this file and anyone else connected to this
system can read and write this file., next ssb is owner of this file dxidev is the group of this
file, there are 135 bytes in this file, this file was created on December 3 at time16:14 and at
the end there is name of this file. Learn to read these permissions in binary, like this for
example Decimal 644 which is 110 100 100 in binary meand rw-r--r-- or user can read,write this
file, group can read only, everyone else can read only. Similarly, if permissions are 755 or 111
101 101 that means rwxr-xr-x or user can read, write and execute, group can read and execute,
everyone else can read and execute. All directories have d in front of permissions. So if you don't
want anyone to see your files or to do anything with it use chmod command and make
permissions so that only you can read and write to that file, i.e.
chmod 600 filename.
Chgrp command.
chgrp command is used to change the group of a file or directory.
You must own the file or be a superuser.
chgrp [options] newgroup files is syntax of chgrp.
Newgroup is either a group Id or a group name located in /etc/group .
Options:
Chown command.
chown command to change ownership of a file or directory to one or more users.
Syntax is
chown options newowner files
Options
Crontab command.
crontab command is used to schedule jobs. You must have permission to run this command by
unix Administrator. Jobs are scheduled in five numbers, as follows.
Minutes 0-59
Hour 0-23
Day of month 1-31
month 1-12
Day of week 0-6 (0 is sunday)
so for example you want to schedule a job which runs from script named backup_jobs in
/usr/local/bin directory on sunday (day 0) at 11.25 (22:25) on 15th of month. The entry in
crontab file will be. * represents all values.
25 22 15 * 0 /usr/local/bin/backup_jobs
The * here tells system to run this each month.
Syntax is
crontab file So a create a file with the scheduled jobs as above and then type
crontab filename .This will scheduled the jobs.
Date command.
Date displays todays date, to use it type date at prompt.
Df command.
df command displays information about mounted filesystems. It reports the number of free disk
blocks. Typically a Disk block is 512 bytes (or 1/2 Kilobyte).
syntax is
df options name
Options
Du command.
du command displays disk usage.
Env command.
env command displays all the variables.
Finger command.
finger command.
PS command
ps command is probably the most useful command for systems administrators. It reports
information on active processes.
ps options
options.
-a Lists all processes in system except processes not attached to terminals.
-e Lists all processes in system.
-f Lists a full listing.
-j print process group ID and session ID.
Ruptime command.
ruptime command tells the status of local networked machines.
ruptime options
options.
-a include user even if they've been idle for more than one hour.
-l sort by load average.
-r reverse the sort order.
-t sort by uptime.
-i sort by number of users.
Shutdown command.
Shutdown command can only be executed by root. To gracefully bring down a system, shutdown
command is used.
options.
Stty command
stty command sets terminal input output options for the current terminal. without options stty
reports terminal settings.
stty options modes < device
options
-a report all options.
-g report current settings.
Modes
0 hang up phone.
n set terminal baud.
erase keyname, will change your keyname to be backspace key.
Who command
who command displays information about the current status of system.
who options file
Who as default prints login names of users currently logged in.
Options