Navigating the file system Flashcards

1
Q

What is the file system?

A

The file system is a method used to organize and store data on a computer’s storage device.
it is represented in a tree structure for efficient reads and writes.

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

$ pwd

A

“print working directory” will print the name of the directory you are currently in.

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

$ cd

A

“change directory” takes the name or path of a target directory and changes your current working directory to the target.
common abbriviations
$ . means the current directory
$ .. means the parent directory

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

what is a relative path?

A

A relative path is a path specified in relation to your current working directory.

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

autocomplete

A

When typing the name of a file, directory or path the system can complete your entry by hitting TAB.

TAB TAB will give a list of auto completion suggestions.

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