Skip to content

Instantly share code, notes, and snippets.

@jervalles
Created September 10, 2019 13:17
Show Gist options
  • Save jervalles/a1a7235dbf46543d5f5e4c85bbb853bf to your computer and use it in GitHub Desktop.
Save jervalles/a1a7235dbf46543d5f5e4c85bbb853bf to your computer and use it in GitHub Desktop.
planets
140 sudo apt-get install -y tree wget unzip
141 wget https://github.com/bhubr/bhubr.github.io/raw/master/wild/planets.zip
142 unzip planets.zip
143 ls
144 oeg planets
145 eog planets
146 cd planets/
147 mkdir real fictional inhabited
148 ls
149 cd real/
150 mkdir telluric gas-giants dwarf-planets
151 ls
152 cd ..
153 mv pluto.jpeg /real
154 sudo mv pluto.jpeg /real
155 cd real/
156 ls
157 cd ..
158 ls
159 cd real
160 ls
161 cd ..
162 ls
163 mv pluto.jpeg real/
164 cd real
165 ls
166 cd ..
167 cd real/
168 ls
169 mv pluto.jpeg dwarf-planets/
170 cd ..
171 mv earth.jpeg mars.jpeg venus.jpeg mercury.jpeg real/telluric/
172 mv neptune.jpeg saturn.jpeg uranus.jpeg jupiter.jpeg real/gas-giants/
173 ls
174 mv arrakis.jpeg cybertron.jpeg coruscant.jpeg fictional/
175 cp fictional/arrakis.jpeg fictional/coruscant.jpeg fictional/cybertron.jpeg ../planets/inhabited/
176 cp real/telluric/earth.jpeg ../planets/inhabited/
177 cd real/
178 rm -r dwarf-planets/
jer@jer-Lenovo-IdeaPad-Yoga-13:~/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
├── earth.jpeg
├── mars.jpeg
├── mercury.jpeg
└── venus.jpeg
5 directories, 15 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment