forked from SEIR-725-Batch/Star_Wars
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathact3.sh
More file actions
executable file
·15 lines (15 loc) · 1.22 KB
/
act3.sh
File metadata and controls
executable file
·15 lines (15 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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 *.txt ~/sei/deliverables/Star_Wars/star_wars/empire/death_star
# 2. darth_vader has defeated obi_wan! Delete poor obi_wan.
rm 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 *.txt ~/sei/deliverables/Star_Wars/star_wars/empire/death_star/millenium_falcon
mv ~/sei/deliverables/Star_Wars/star_wars/empire/death_star/millenium_falcon/darth_vader.txt ~/sei/deliverables/Star_Wars/star_wars/empire/death_star
# 4. Move the millenium_falcon back into the rebellion directory.
v ~/sei/deliverables/Star_Wars/star_wars/empire/death_star/millenium_falcon ~/sei/deliverables/Star_Wars/star_wars/rebellio
n
# 5. darth_vader leaves the death_star to pursue luke_skywalker! Move him from the death_star into the empire directory!
mv *.txt ~/empire
# 6. Thanks to his practice back home at Beggar’s Canyon, Luke blew up the death_star! Remove it from the galaxy!