Created
March 3, 2020 10:28
-
-
Save lebowvsky/eec26f258df27a830b2e89ddae9a16fd to your computer and use it in GitHub Desktop.
Terminal2
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
. | |
├── 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 | |
├── earth.jpeg | |
├── mars.jpeg | |
├── mercury.jpeg | |
└── venus.jpeg | |
528 mkdir real | |
529 mkdir fictional | |
530 mkdir inhabited | |
cd real | |
533 ls | |
534 mkdir telluric gas-giants dwarf-planets | |
549 mv mercury.jpeg venus.jpeg earth.jpeg mars.jpeg real/telluric/ | |
557 mv pluto.jpeg real/dwarf-planets | |
563 mv jupiter.jpeg saturn.jpeg real/gas-giants/ | |
570 mv neptune.jpeg real/gas-giants/ | |
571 mv uranus.jpeg real/gas-giants/ | |
573 mv arrakis.jpeg coruscant.jpeg cybertron.jpeg fictional/ | |
595 cp earth.jpeg ../../inhabited/ | |
604 cp arrakis.jpeg coruscant.jpeg cybertron.jpeg ../inhabited/ | |
618 rm -r dwarf-planets |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment