Created
September 11, 2019 07:46
-
-
Save krez69/6aea9388b0f38c45f9bef2d48797baa6 to your computer and use it in GitHub Desktop.
This file contains 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
mkdir real fictional inhabited | |
cd real | |
mkdir telluric gas-giants dwarf-planets | |
mv ../mercury.jpeg ../mars.jpeg ../venus.jpeg ../earth.jpeg telluric/ | |
mv ../jupiter.jpeg ../saturn.jpeg ../uranus.jpeg ../neptune.jpeg gas-giants/ | |
mv ../arrakis.jpeg ../coruscant.jpeg ../cybertron.jpeg ../pluto.jpeg dwarf-planets/ | |
cd dwarf-planets/ | |
mv arrakis.jpeg coruscant.jpeg cybertron.jpeg ../../fictional/ | |
mv ../../real/telluric/earth.jpeg ../../inhabited/ | |
mv ../../fictional/arrakis.jpeg ../../fictional/coruscant.jpeg ../../fictional/cybertron.jpeg ../../inhabited/ | |
cd .. | |
rm -rf dwarf-planets/ | |
cd .. | |
cd inhabited/ | |
cp arrakis.jpeg coruscant.jpeg cybertron.jpeg ../fictional/ | |
cd .. | |
tree |
This file contains 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
root@DESKTOP-BGVA5DU:/quetes/shell/planets# tree | |
. | |
├── fictional | |
│ ├── arrakis.jpeg | |
│ ├── coruscant.jpeg | |
│ └── cybertron.jpeg | |
├── inhabited | |
│ ├── arrakis.jpeg | |
│ ├── coruscant.jpeg | |
│ ├── cybertron.jpeg | |
│ └── earth.jpeg | |
└── real | |
├── gas-giants | |
│ ├── jupiter.jpeg | |
│ ├── neptune.jpeg | |
│ ├── saturn.jpeg | |
│ └── uranus.jpeg | |
└── telluric | |
├── mars.jpeg | |
├── mercury.jpeg | |
└── venus.jpeg | |
5 directories, 14 files | |
root@DESKTOP-BGVA5DU:/quetes/shell/planets# |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment