Command Example Description Cat
Command Example Description Cat
cat
cd
cp
dd
df
less
ln
Example
Description
Sends file contents to standard output. This is a way to list
the contents of short files to the screen. It works well with
piping.
cat .bashrc
Sends the contents of the ".bashrc" file to the screen.
Change directory
cd /home
Change the current working directory to /home. The '/'
indicates relative to root, and no matter what directory you
are in when you execute this command, the directory will be
changed to "/home".
cd httpd
Change the current working directory to httpd, relative to the
current location which is "/home". The full path of the new
working directory is "/home/httpd".
cd ..
Move to the parent directory of the current directory. This
command will make the current working directory "/home.
cd ~
Move to the user's home directory which is
"/home/username". The '~' indicates the users home
directory.
Copy files
cp myfile yourfile
Copy the files "myfile" to the file "yourfile" in the current
working directory. This command will create the file
"yourfile" if it doesn't exist. It will normally overwrite it
without warning if it exists.
cp -i myfile yourfile With the "-i" option, if the file "yourfile" exists, you will be
prompted before it is overwritten.
cp -i /data/myfile .
Copy the file "/data/myfile" to the current working directory
and name it "myfile". Prompt before overwriting the file.
cp -dpr srcdir destdir Copy all files from the directory "srcdir" to the directory
"destdir" preserving links (-p option), file attributes (-p
option), and copy recursively (-r option). With these options,
a directory and all it contents can be copied to another
directory.
Disk duplicate. The man page says this command is to
dd if=/dev/hdb1
"Convert and copy a file", but although used by more
of=/backup/
advanced users, it can be a very handy command. The "if"
means input file, "of" means output file.
Show the amount of disk space used on each mounted
filesystem.
Similar to the more command, but the user can page up and
less textfile
down through the file. The example displays the contents of
textfile.
Creates a symbolic link to a file.
ln -s test symlink
Creates a symbolic link named symlink that points to the file
test Typing "ls -i test symlink" will show the two files are