Skip to content

Instantly share code, notes, and snippets.

@justinehell
Created May 25, 2020 20:32
Show Gist options
  • Save justinehell/00e429a35af0b68dc9060ce8e688902f to your computer and use it in GitHub Desktop.
Save justinehell/00e429a35af0b68dc9060ce8e688902f to your computer and use it in GitHub Desktop.
justine@justine-K75VM:~/quetes/shell/planets$ find
.
./real
./real/gas-giants
./real/gas-giants/neptune.jpeg
./real/gas-giants/saturn.jpeg
./real/gas-giants/jupiter.jpeg
./real/gas-giants/uranus.jpeg
./real/telluric
./real/telluric/earth.jpeg
./real/telluric/venus.jpeg
./real/telluric/mars.jpeg
./real/telluric/mercury.jpeg
./fictional
./fictional/arrakis.jpeg
./fictional/cybertron.jpeg
./fictional/coruscant.jpeg
./inhabited
./inhabited/arrakis.jpeg
./inhabited/earth.jpeg
./inhabited/cybertron.jpeg
./inhabited/coruscant.jpeg
-- historique des commandes --
-- copie des lignes liées au challenge --
128 cd quetes/shell
129 curl -L -o planets.zip https://github.com/WildCodeSchool/quests-resources/blob/master/terminal/planets.zip?raw=true
130 unzip planets.zip
131 mkdir planets/real planets/fictional planets/inhabited
132 mkdir planets/real/telluric planets/real/gas-giants planets/real/dwarf-planets
133 cd planets
135 mv mercury.jpeg venus.jpeg earth.jpeg mars.jpeg real/telluric/
136 mv jupiter.jpeg saturn.jpeg neptune.jpeg uranus.jpeg real/gas-giants/
137 mv pluto.jpeg real/dwarf-planets/
138 mv arrakis.jpeg coruscant.jpeg cybertron.jpeg fictional/
139 cp real/telluric/earth.jpeg inhabited/
140 cd fictional/
149 cp *.jpeg ../inhabited/
150 cd ..
156 rm -r real/dwarf-planets/
159 find
160 history
--THE END--
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment