forked from SEIR-725-Batch/Star_Wars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
act3.sh
executable file
·14 lines (14 loc) · 1.15 KB
/
act3.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 1. Unload the Millenium Falcon in ONE COMMAND!
# Move the whole crew from the millenium_falcon directory into the death_star directory. HINT: * following a directory will grab all files/folders inside of a directory (directory/*)
mv ./star_wars/empire/death_star/millenium_falcon/* ./star_wars/empire/death_star
# 2. darth_vader has defeated obi_wan! Delete poor obi_wan.
rm ./star_wars/empire/death_star/obi_wan.txt
# 3. Our heroes have disabled the tractor beam! Move the whole crew back into the millenium_falcon!
# Remember: darth_vader remains in the death_star and emperor_palpatine is still in the empire.
mv chewbacca.txt han_solo.txt luke_skywalker.txt princess_leia.txt ./millenium_falcon
# 4. Move the millenium_falcon back into the rebellion directory.
mv ./millenium_falcon/ ~/sei/Star_Wars/star_wars/rebellion
# 5. darth_vader leaves the death_star to pursue luke_skywalker! Move him from the death_star into the empire directory!
mv ./empire/death_star/darth_vader.txt ./empire
# 6. Thanks to his practice back home at Beggar’s Canyon, Luke blew up the death_star! Remove it from the galaxy!
rm -rf ./empire/death_star