HW5
This table contains a list of paths to files (recall that directories are files too). See this link for a refresher on the difference between absolute and relative paths.
| path | relative or absolute | working directory |
|---|---|---|
/home |
absolute | / |
/dev |
absolute | / |
/boot |
absolute | /dev |
usr |
relative | / |
paul |
relative | /home |
../home/paul/src |
relative | /dev |
bin |
relative | /usr |
./bin |
relative | /home/paul |
home |
relative | /home/paul |
paul |
relative | /dev/../home/paul/home/ |
Using this list, construct a diagram of the complete file tree
containing all files listed in the paths. Feel free to draw this tree by
hand as shown in class, or use ASCII art, e.g., as the tree
command does. It is optional to include the dot and double-dot
directories.