Created
September 13, 2019 11:27
-
-
Save stephanBerger/d119f5012d164cf4bb4bea9ba6755e7c to your computer and use it in GitHub Desktop.
Linux Terminal 2
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
| 481 wget https://github.com/bhubr/bhubr.github.io/raw/master/wild/planets.zip | |
| 482 unzip planets.zip | |
| 483 eog planets/ | |
| 484 ls | |
| 485 cd planets | |
| 486 ls | |
| 487 mkdir real fictional inhabited | |
| 488 ls | |
| 489 cd real/ | |
| 490 ls | |
| 491 mkdir telluric gas-giants dwarf-planets | |
| 492 ls | |
| 493 cd .. | |
| 494 mv earth.jpeg jupiter.jpeg neptune.jpeg saturn.jpeg mars.jpeg pluto.jpeg uranus.jpeg mercury.jpeg venus.jpeg /real | |
| 495 mv earth.jpeg jupiter.jpeg neptune.jpeg saturn.jpeg mars.jpeg pluto.jpeg uranus.jpeg mercury.jpeg venus.jpeg real | |
| 496 ls | |
| 497 cd real | |
| 498 ls | |
| 499 mv mars.jpeg earth.jpeg mercury.jpeg | |
| 500 mv mars.jpeg earth.jpeg mercury.jpeg telluric/ | |
| 501 mv pluto dwarf-planets/ | |
| 502 mv pluto.jpeg dwarf-planets/ | |
| 503 ls | |
| 504 cd telluric/ | |
| 505 ls | |
| 506 cd .. | |
| 507 mv venus.jpeg telluric/ | |
| 508 ls telluric/ | |
| 509 ls | |
| 510 mv *.jpeg gas-giants/ | |
| 511 ls | |
| 512 cd .. | |
| 513 ls | |
| 514 mv *.jpeg fictional/ | |
| 515 ls | |
| 516 ls fictional/ | |
| 517 cp fictional/*.jpeg inhabited/ | |
| 518 cp real/telluric/earth.jpeg inhabited/ | |
| 519 ls | |
| 520 cd real/ | |
| 521 ls | |
| 522 rm -r dwarf-planets/ | |
| 523 ls | |
| 524 tree | |
| 525 cd .. | |
| 526 cd.. | |
| 527 cd .. | |
| 528 tree | |
| 529 history | |
| 530 history > historique |
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
| ├── planets | |
| │ ├── 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment