Skip to content

Instantly share code, notes, and snippets.

@vmalep
Created September 13, 2021 20:40
Show Gist options
  • Save vmalep/7a6caab3780621589cd99ceb3b5c1347 to your computer and use it in GitHub Desktop.
Save vmalep/7a6caab3780621589cd99ceb3b5c1347 to your computer and use it in GitHub Desktop.
vmalep@L390Y:~/Documents/study/WildCodeSchool/quests/planets$ find
.
./fictional
./fictional/coruscant.jpeg
./fictional/arrakis.jpeg
./fictional/cybertron.jpeg
./real
./real/terrestrial
./real/terrestrial/earth.jpeg
./real/terrestrial/neptune.jpeg
./real/terrestrial/mars.jpeg
./real/terrestrial/venus.jpeg
./real/terrestrial/uranus.jpeg
./real/terrestrial/mercury.jpeg
./real/gas-giants
./real/gas-giants/jupiter.jpeg
./real/gas-giants/saturn.jpeg
./inhabited
./inhabited/earth.jpeg
./inhabited/coruscant.jpeg
./inhabited/arrakis.jpeg
./inhabited/cybertron.jpeg
174 mkdir shell
175 curl -L -o planets.zip "https://github.com/WildCodeSchool/quests-resources/blob/master/terminal/planets.zip?raw=true"
176 unzip planets.zip
177 l
178 cd planets/
179 ls
180 mkdir real fictional inhabited
181 ls
182 cd real/
183 mkdir terrestrial gas-giants dwarf-planets
184 ls
185 cd ..
186 ls
187 mv pluto.jpeg real/dwarf-planets/
188 ls
189 mv earth.jpeg real/terrestrial/
190 mv jupiter.jpeg real/gas-giants/
191 mv mercury.jpeg real/terrestrial/
192 mv saturn.jpeg real/gas-giants/
193 mv venus.jpeg real/terrestrial/
194 mv mars.jpeg real/terrestrial/
195 mv neptune.jpeg real/terrestrial/
196 ls
197 mv uranus.jpeg real/terrestrial/
198 mv coruscant.jpeg fictional/
199 mv cybertron.jpeg fictional/
200 mv arrakis.jpeg fictional/
201 cp fictional/* inhabited/
202 cp real/terrestrial/earth.jpeg inhabited/
203 ls inhabited/
204 rm -rf real/dwarf-planets
205 find
206 history
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment