prep work...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2024-03-01 15:13:42 +03:00
parent e36b8200d1
commit 530e288108

View File

@ -11,6 +11,8 @@ printhelp(){
echo echo
echo "Arguments:" echo "Arguments:"
echo " -h --help - print this help and exit." echo " -h --help - print this help and exit."
#echo " -p --psd - source metadad from psd file (default)."
#echo " -r --raw - source metadad from raw file."
echo echo
} }
@ -20,6 +22,16 @@ while true ; do
printhelp printhelp
exit exit
;; ;;
# XXX
-r|--raw)
shift
break
;;
# XXX
-p|--psd)
shift
break
;;
*) *)
break break
;; ;;
@ -70,3 +82,4 @@ else
cd "$DIR" cd "$DIR"
done done
fi fi