

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Community
Ask the community for help and clear up your study doubts
Discover the best universities in your country according to Docsity users
Free resources
Download our free guides on studying techniques, anxiety management strategies, and thesis advice from Docsity tutors
This unix command cheat sheet provides a comprehensive list of essential unix commands for file manipulation, directory navigation, and text editing. Learn how to list directories, change directories, create and remove directories, move and copy files, view files, and manage permissions. Also, discover important symbols and common text editors.
What you will learn
Typology: Cheat Sheet
1 / 2
This page cannot be seen from the preview
Don't miss anything!
Physics 91 SI Handout 04 Alex Ji and Zahan Malkani Command Description Examples and Options Most Important Command! man Manual for other commands. man cat Navigating Directories ls List the contents of the directory. ls -lart /afs/ir.stanford.edu cd Change directory. cd WWW/ pwd Print working directory. pwd Modifying Directories and Files mkdir Make new directory. mkdir physics91SI rmdir Remove directory. rmdir physics91SI mv Move files. mv -i foo.txt foo2.txt cp Copy files. cp -i ../foo.txt. rm Remove files. (Cannot undo!) rm -i foo.txt Viewing Files in Terminal less View files easily. less foo.txt cat Concatenate files. cat foo1.txt foo2.txt Important Symbols
ls *.txt ? Wild card, 0 or 1 characters. ls foo?.txt
. Current directory. cd. .. Directory one level up. cd .. & Run process in background. emacs & | Pipe/filter output through another program.
cat foo.txt | less
Redirect standard output to. cat foo.txt > foo2.txt < Redirect standard input from. less < foo.txt Common text editors: emacs, vim, vi, pico, nano
Command Description Examples and Options File Manipulation (Fill out yourself ) wc sort head tail split cut paste uniq pr Permissions (Fill out yourself ) chmod
Job Manipulation (Fill out yourself ) ps kill jobs fg bg Ctrl-z Ctrl-c Searching (Fill out yourself ) grep
find
Miscellaneous (Fill out yourself ) touch who whoami du diff