Linux Command Line Flashcards
1
Q
mkdir
A
make directory
2
Q
rmdir
A
remove directory
3
Q
touch
A
create a file within a directory
4
Q
rm
A
remove a file
5
Q
mv
A
move or rename files
6
Q
/
A
root directory
7
Q
..
A
go up to parent directory
8
Q
absolute path
A
any path that starts with /
9
Q
whoami
A
remind you of username
10
Q
~
A
starting from the home directory
11
Q
mkdir -p
A
any directories listed after and separated by a forward slash will be nested within one another
12
Q
>
A
capture the output of a command, followed by name of file to write to
13
Q
cat
A
look at the content of a file, concatenate
14
Q
echo
A
prints its arguments back out again
15
Q
?
A
any single character