2024-12-16 20:49:16 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2024-12-16 21:21:45 +01:00
|
|
|
##################################################################
|
|
|
|
# files-html - Cool HTML Indexer for Apache/Nginx with Bootstrap #
|
|
|
|
# Date: 16-12-2023 #
|
|
|
|
# Author: q3aql #
|
|
|
|
# Contact: q3aql@duck.com #
|
|
|
|
##################################################################
|
|
|
|
|
2024-12-16 20:49:16 +01:00
|
|
|
dir=$(dirname $0)
|
|
|
|
dir_files="$(dirname $0)/files"
|
|
|
|
|
|
|
|
# Create index for HTML
|
|
|
|
cd ${dir}
|
|
|
|
bash clean.sh ${dir_files}
|
|
|
|
bash index-recursive.sh ${dir_files}
|