12345678910111213141516171819202122232425262728293031 |
- #!/bin/bash
- # Packages
- # tree
- rm -f *.html
- # children
- cd children
- tree -H . > ../children.html
- # films
- cd ../films
- tree -H . > ../films.html
- # Giulio
- cd ../Giulio
- tree -H . > ../Giulio.html
- # music
- cd ../music
- tree -H . > ../music.html
- # sport
- cd ../sport
- tree -H . > ../sport.html
- # tv_series
- cd ../tv_series
- tree -H . > ../tv_series.html
|