Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. wilder@wilder-ThinkPad-T440p:~/quetes/shell$ tree
  2. .
  3. ├── planets
  4. │   ├── fictional
  5. │   │   ├── arrakis.jpeg
  6. │   │   ├── coruscant.jpeg
  7. │   │   └── cybertron.jpeg
  8. │   ├── inhabited
  9. │   │   ├── earth.jpeg
  10. │   │   ├── mars.jpeg
  11. │   │   ├── mercury.jpeg
  12. │   │   └── venus.jpeg
  13. │   └── real
  14. │   ├── gas-giants
  15. │   │   ├── jupiter.jpeg
  16. │   │   └── saturn.jpeg
  17. │   └── telluric
  18. │   ├── earth.jpeg
  19. │   ├── mars.jpeg
  20. │   ├── mercury.jpeg
  21. │   └── venus.jpeg
  22. └── planets.zip
  23.  
  24. ----------------------------------------------------------
  25.  
  26. 118 mv jupiter.jpeg saturn.jpeg real/gas-giants/
  27. 119 mv mercury.jpeg mars.jpeg venus.jpeg earth.jpeg real/telluric/
  28. 120 mv pluto.jpeg uranus.jpeg neptune.jpeg real/dwarf-planets/
  29. 121 mv arrakis.jpeg coruscant.jpeg cybertron.jpeg fictional/
  30. 127 mv earth.jpeg mars.jpeg mercury.jpeg venus.jpeg ~/quetes/shell/planets/inhabited/
  31. 133 cp earth.jpeg mars.jpeg mercury.jpeg venus.jpeg ~/quetes/shell/planets/real/telluric/
  32.  
  33. 135 cd real/dwarf-planets/
  34. 136 rm pluto.jpeg
  35. 137 cd ..
  36. 138 rm -R dwarf-planets/
  37. 139 tree
  38. 143 history
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement