Created
May 25, 2020 16:49
-
-
Save alyson-b69/4659600a1f32f15813fd4cd765b57248 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
➜ shell curl -L -o planets.zip https://github.com/WildCodeSchool/quests-resources/blob/master/terminal/planets.zip\?raw\=true | |
% Total % Received % Xferd Average Speed Time Time Time Current | |
Dload Upload Total Spent Left Speed | |
100 148 100 148 0 0 477 0 --:--:-- --:--:-- --:--:-- 477 | |
100 159 100 159 0 0 305 0 --:--:-- --:--:-- --:--:-- 305 | |
100 293k 100 293k 0 0 261k 0 0:00:01 0:00:01 --:--:-- 536k | |
➜ shell unzip planets.zip | |
Archive: planets.zip | |
creating: planets/ | |
inflating: planets/mercury.jpeg | |
inflating: planets/earth.jpeg | |
inflating: planets/pluto.jpeg | |
inflating: planets/arrakis.jpeg | |
inflating: planets/jupiter.jpeg | |
inflating: planets/venus.jpeg | |
inflating: planets/mars.jpeg | |
inflating: planets/cybertron.jpeg | |
inflating: planets/coruscant.jpeg | |
inflating: planets/uranus.jpeg | |
inflating: planets/neptune.jpeg | |
inflating: planets/saturn.jpeg | |
➜ shell mkdir planets/real planets/fictional planets/inhabited | |
➜ shell mkdir planets/real/telluric planets/real/gas-giants planets/real/dwarf-planets | |
➜ shell cd ~/quetes/shell/planets | |
➜ planets mv mercury.jpeg mars.jpeg venus.jpeg earth.jpeg real/telluric | |
➜ planets mv uranus.jpeg saturn.jpeg jupiter.jpeg neptune.jpeg real/gas-giants | |
➜ planets mv pluto.jpeg real/dwarf-planets | |
➜ planets mv arrakis.jpeg coruscant.jpeg cybertron.jpeg fictional/ | |
➜ planets cp real/telluric/earth.jpeg inhabited/ | |
➜ planets cp fictional/arrakis.jpeg fictional/coruscant.jpeg fictional/cybertron.jpeg inhabited/ | |
➜ planets rm -r real/dwarf-planets | |
➜ planets find . planets | |
. | |
./.DS_Store | |
./real | |
./real/.DS_Store | |
./real/gas-giants | |
./real/gas-giants/jupiter.jpeg | |
./real/gas-giants/uranus.jpeg | |
./real/gas-giants/neptune.jpeg | |
./real/gas-giants/saturn.jpeg | |
./real/telluric | |
./real/telluric/mercury.jpeg | |
./real/telluric/earth.jpeg | |
./real/telluric/venus.jpeg | |
./real/telluric/mars.jpeg | |
./inhabited | |
./inhabited/earth.jpeg | |
./inhabited/arrakis.jpeg | |
./inhabited/cybertron.jpeg | |
./inhabited/coruscant.jpeg | |
./fictional | |
./fictional/arrakis.jpeg | |
./fictional/cybertron.jpeg | |
./fictional/coruscant.jpeg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment