vp-34-regenerate-html-indexes-warehouse.sh 312 B

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