Ubantu Flashcards
1
Q
Cd
A
Back to home
2
Q
Cd /documents
A
Go to documents folder
3
Q
On the directory documents make folder
A
Mkdir test
4
Q
Go to folder in folder
A
Documents$
Cd test/
Now you are in test folder
5
Q
Make parent and child folder
A
Mkdir -p parent/child/child
6
Q
Remove directory
A
rmdir
7
Q
Remove child folder when you are in parent folder
A
rmdir test
8
Q
Remove parwnt and child
A
rmdir -p parent/child/child
9
Q
File type
A
File filename.type
10
Q
Back one directoey
A
Cd..
11
Q
Make file whit touch command
A
touch filename.type
12
Q
Make mulitifile with touch
A
touch filename.type filename.type
13
Q
remove file
A
rm filename.type
14
Q
Force remove directory
A
rm -rf foldername
15
Q
Copy file
A
Cp firstfoldername.type newfoldername.type