**Unit 2 Lab Walk-Through**
By: Wilson Zhu
Note: This walk-through will only cover part 2: Organizing the Zoo
**Setup**
Make sure you are in the unit 2 folder:

Can be done using the command `cd unit2`
You can also verify that you are in the unit 2 folder by running `pwd`
Once you are in the unit 2 folder, download the file with the following command: `wget https://github.com/codepath/cyb101-lab2/raw/main/zoo.zip`

Unzip the file using the command `unzip zoo.zip`

When you run the tree command for zoo, you should see something similar to this:

**Task**
We can go ahead and move `Peregrine_Falcon.txt` to the birds file using the following command: `mv Peregrine_Falcon.txt birds/`
This move can be verified using the command `tree`. In my instance, I went inside the directory and ran the `tree` command.

Lets go ahead and rename `b1g_katz` to `big_cats` using the following command: `mv b1g_katz big_cats`

Lets go and move Komodo_Dragon.txt out side of the big_cats folder into the main folder using the command `mv Komodo_Dragon.txt cd ..`
We can then use `cd ..` to go back to the main directory:

Move `Komodo_Dragon.txt` to reptiles using the command `mv Komodo_Dragon.txt reptiles`

Go in reptiles and remove `a_lost_tourist.txt` and move `Scarlet_Macaw.txt` back to the main directory:

Finally move `Scarlet_Macaw.txt` into the birds directory:
