Basic Commands Flashcards
1
Q
pwd
A
Print working directory
2
Q
hostname
A
My computer’s network name
3
Q
mkdir
A
Make directory
4
Q
cd
A
Change directory
5
Q
ls
A
List directory
6
Q
rmdir
A
Remove directory
7
Q
pushd
A
Push directory
8
Q
popd
A
Pop directory
9
Q
cp
A
Copy a file or directory
10
Q
mv
A
Move a file or directory
11
Q
less
A
Page through a file
12
Q
cat
A
Print the whole file
13
Q
xargs
A
Execute arguments
14
Q
find
A
Find files
find start directory -name pattern -print
Need to double quote the pattern
15
Q
grep
A
Find things inside files