**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: ![](https://hackmd.io/_uploads/B1u6XCCAn.png) 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` ![](https://hackmd.io/_uploads/BkG_4CAAh.png) Unzip the file using the command `unzip zoo.zip` ![](https://hackmd.io/_uploads/r1Q540AA2.png) When you run the tree command for zoo, you should see something similar to this: ![](https://hackmd.io/_uploads/ByljaN000n.png) **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. ![](https://hackmd.io/_uploads/SJYgpCR0h.png) Lets go ahead and rename `b1g_katz` to `big_cats` using the following command: `mv b1g_katz big_cats` ![](https://hackmd.io/_uploads/B1oLp0RRn.png) 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: ![](https://hackmd.io/_uploads/B1IpTCRC2.png) Move `Komodo_Dragon.txt` to reptiles using the command `mv Komodo_Dragon.txt reptiles` ![](https://hackmd.io/_uploads/SyreRACR3.png) Go in reptiles and remove `a_lost_tourist.txt` and move `Scarlet_Macaw.txt` back to the main directory: ![](https://hackmd.io/_uploads/H1gEC0RRh.png) Finally move `Scarlet_Macaw.txt` into the birds directory: ![](https://hackmd.io/_uploads/Hk8ICCCCn.png)