Linux Commands Flashcards
1
Q
ls -la
A
list the names and features of all files (including hidden) and directories in a detailed format
1
Q
ls
A
list the names and features of files and directories
2
Q
cd
A
change directory
3
Q
cat
A
concatenate the contents of a text file to the screen
4
Q
mkdir
A
Create a directory
5
Q
mv
A
Move a file or directory
6
Q
rm
A
Remove a file
7
Q
rmdir
A
Remove a directory
8
Q
ps -ef
A
View currently running processes
9
Q
constantly display and update the current running processes
A
while true; do clear; ps -ef; sleep 3; done
10
Q
grep
A
search for a string
11
Q
|
A
Connect commands