This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Practice Drill 1 | |
| To create the given directory structure: | |
| $ mkdir -p hello/{five/six/{c.txt,seven/error.log},one/{a.txt,b.txt,two/{d.txt,three/{e.txt,four/access.log}}}} | |
| // The `-p` option is used in `mkdir` to create multiple directories | |
| // `{}` is used to create multiple files or directories inside a directory | |
| $ tree hello | |
| // This command is used to display the directory structure |