phpsg.sh: Add more help information.

This commit is contained in:
Nicolás A. Ortega Froysa 2025-03-04 10:10:16 +01:00
parent 67c83bf85a
commit c80437a6b4

View File

@ -34,6 +34,20 @@ function print_usage() {
echo "$0 -S [-o <output dir>]" echo "$0 -S [-o <output dir>]"
} }
function print_help() {
printf "PHP Site Generator\n\n"
printf "SYNOPSIS:\n"
print_usage
printf "\nOPTIONS:\n"
printf "\t-o <output dir> Output directory\n"
printf "\t-s <source dir> Source directory\n"
printf "\t-j <num> Number of jobs to run\n"
printf "\t-S Run a server on localhost:8080\n"
printf "\t-h Show help information\n"
printf "\n"
}
while getopts "o:s:j:Sh" opt while getopts "o:s:j:Sh" opt
do do
case "$opt" in case "$opt" in
@ -56,7 +70,7 @@ do
SERVER_FLAG=1 SERVER_FLAG=1
;; ;;
h) h)
print_usage print_help
exit exit
;; ;;
*) *)