add note about copying to path to embedded help

This commit is contained in:
Asif Bacchus 2020-06-20 04:52:22 -06:00
parent 9c66119ae3
commit ed367f7963
1 changed files with 2 additions and 0 deletions

2
sri
View File

@ -51,6 +51,8 @@ scriptHelp (){
printf "%s./%s -d /var/www/includes --filter 'foo*'%s\n\n" "$cyan" "$scriptName" "$norm"
printf "Generate SHA256 hashes for all '.css' files in /var/www/css and 'script.js' in /var/www/js/\n"
printf "%s./%s -2 -f /var/www/js/script.js -d /var/www/css --filter '*.css'%s\n\n" "$cyan" "$scriptName" "$norm"
printf "N.B. If you copy this script to somewhere in your path, like /usr/local/bin, then you can run it like any other command without having to specify a leading path ('./' in above examples):\n"
printf "%s%s -f /var/www/css/styles.css%s\n\n" "$cyan" "$scriptName" "$norm"
exit 0;
}