Untitled Deck Flashcards
1
Q
Go to root directory
A
cd /
2
Q
Go to child directory
A
cd directory_a
3
Q
Go to home directory
A
‘cd ~’ or simply ‘cd’
4
Q
List directories and files in your wd
A
ls
5
Q
List directories and files or your wd as well including hidden
A
ls -a
6
Q
List the directories and files in your wd with detailed info
A
ls -l
7
Q
List the root directory
A
ls /
8
Q
What’s the command to make a new directory?
A
mkdir
9
Q
What command and option must be used to create directories in a tree structure?
A
mkdir -p {dir1} {dir2} {dir 3}…