zhrc:~/linux_tutorials$
[host] [current dir]  [prompt] 

Untitled

pwd  [locate current path]
cd   [change to specific directory]
ls   [list files in current directory]
	-l [long list]
	-t [sort by modification time]
	-S [sort by size]
	-h [list file sizes in human readable format]
	-r [reverse the order]
*    [wildcard in unix/linux]
mkdir[make directory]
rmdir[remove directory]
cat  [dumps entire file to standard output]
less [displays file allowing forward/backward]
head [displays the top part of a file]
tail [displays last part of a file]
cp   [copying a file[
mv   [move or rename a file]
rm   [remove a file]
ps   [view processes running]
kill [terminate process]
program_a | program_b [program_a's output becomes program_b's output]
program_a > file.txt  [program_a's output is written to file.txt]
program_a < input.txt [program-a gets its input from input.txt]

grep                  [search files in a directory for spectific string]

VIM