command line Flashcards
1
Q
like dir in dos
A
LS
2
Q
for going inside a folder
A
cd
3
Q
shows where are you new
A
pwd
4
Q
for making a directory
A
mkdir (name)
5
Q
for removing a directory rmdir (name)
A
rmdir (name)
6
Q
for editing a text
A
nano
7
Q
for view inside your file
A
cat
8
Q
to move the file
A
mv
9
Q
to copy the file
A
cp
10
Q
for making a new file i.e. touch name.txt
A
touch name.txt
11
Q
for sorting inside your text file
A
sort name.txt
12
Q
for reverse sorting
A
sort -r *.txt
13
Q
for sort and make copy from your file
A
sort *.txt >newname.txt
14
Q
for sorting and reverse the number
A
sort -n sort -n - r
15
Q
for sorting and reverse the month
A
sort -m sort -m - r