client operating systems Flashcards
1
Q
pwd
A
(Display the current directory)
2
Q
ls
A
(List everything in a directory)
3
Q
cd
A
(Change directories)
4
Q
cat
A
(Display the contents of a file)
5
Q
less
A
(Display the contents of a file and stay in the file to move around)
6
Q
mkdir
A
(creates a directory)
7
Q
rmkdir
A
(removes a directory)
8
Q
touch
A
(creates a blank file)
9
Q
rm
A
(removes a file)
10
Q
rm -r
A
(removes a directory and its files)
11
Q
cp
A
(copies a file or directory)
12
Q
mv
A
(moves a file or directory)
13
Q
cd /etc
A
(moves you to the “etc” folder)
14
Q
cd /
A
(moves you to the root of the file system)
15
Q
cd . .
A
(moves you up one level)