list all files and directories (command lists files that are normally hidden)
3
New cards
ls -l
list all files and information about those files (command lists more information about the files
4
New cards
mkdir **directory**
make a **directory**
5
New cards
cd **directory**
change to **named directory**
6
New cards
cd
change to home directory
7
New cards
cd ..
change to parent directory (Backs up/go back one directory
8
New cards
cd -
Returns you to whatever directory you were in last
9
New cards
pwd
prints the path of current (working) directory
10
New cards
cp **file1 file2**
copy **file1** and call it **file2**
11
New cards
mv **file1 file2**
move or rename **file1** to **file2**
12
New cards
rm **file1**
remove/delete **file1**
13
New cards
rmdir **directory**
remove a **directory**
14
New cards
clear
clears the screen
15
New cards
more **file1**
display **file1** a page at a time
16
New cards
cat **file1**
displays the entire contents of **file1** at once
17
New cards
grep **word** file1
* search for instances of **word** in file1 * stands for global search for regular expression and print out * searches a file for a particular pattern of characters and displays \\n all lines that contain that pattern
18
New cards
diff file1 file2
Shows the line by line differences between file1 and file2
19
New cards
man command
display the manual for the given command
20
New cards
cd .
Stay in current directory
21
New cards
rmdir
remove the directory
22
New cards
rmdir directory1
remove directory1
23
New cards
apropos xxx
The command apropos can be used to display any command that references xxx.
24
New cards
diff
* used to display the differences in the files by comparing the files line by line * If two files are identical, diff will show nothing.
25
New cards
gcc MyProgram.c
the command to compile a C program from a UNIX terminal.
26
New cards
./a.out
run a C program after compiling from a UNIX terminal.