Directories and Files Flashcards

1
Q

How do you delete directories with nested directories?

A

rmdir -p [directory_name]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
1
Q

How do you delete directories with nested directories?

A

rmdir -p [directory_name]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How do you delete everything in a directory that is not empty (contains files / folders)?

A

rm -r [directory_name]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How do you copy a directory and all of its contents?

A

cp -a or cp -r

How well did you know this?
1
Not at all
2
3
4
5
Perfectly