1. Command Line Crash Course 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/rename 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
15
Q
grep
A
find things inside files
16
Q
man
A
read a page in the manual
17
Q
apropos
A
find approximate manual page
18
Q
env
A
print current environment variables
19
Q
echo
A
print some arguments
20
Q
export
A
export/set a new environment variable
21
Q
exit
A
exit the shell
22
Q
sudo
A
Danger! become super user root Danger!
23
Q
chmod
A
change permission modifiers
24
Q
chown
A
change ownership
25
Q
touch
A
create a new empty file
26
Q
rm
A
remove a file