vp-32-regenerate-html-indexes-current.sh 350 B

12345678910111213141516171819202122232425262728293031
  1. #!/bin/bash
  2. # Packages
  3. # tree
  4. rm -f *.html
  5. # children
  6. cd children
  7. tree -H . > ../children.html
  8. # films
  9. cd ../films
  10. tree -H . > ../films.html
  11. # Giulio
  12. cd ../Giulio
  13. tree -H . > ../Giulio.html
  14. # music
  15. cd ../music
  16. tree -H . > ../music.html
  17. # sport
  18. cd ../sport
  19. tree -H . > ../sport.html
  20. # tv_series
  21. cd ../tv_series
  22. tree -H . > ../tv_series.html