Command Line 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 contents
6
Q
rmdir
A
remove (delete) directory
7
Q
pushd
A
push directory
8
Q
popd
A
pop directory
9
Q
cp
A
copy file or directory
10
Q
mv
A
move file or directory
11
Q
less
A
page through file
12
Q
cat
A
print whole file
13
Q
xargs
A
execute arguments
14
Q
find
A
find files
15
Q
grep
A
find things in files
16
Q
man
A
read manual page
17
Q
apropos
A
find which manual page is appropriate
18
Q
env
A
view environment
19
Q
echo
A
print some arguments
20
Q
export
A
export/set new environment variable
21
Q
exit
A
exit the shell
22
Q
sudo
A
become super root user