Interation

This commit is contained in:
Joey Hafner 2023-10-09 11:21:23 -07:00
parent ede778b49a
commit 5eaf5c405d

View File

@ -43,11 +43,19 @@ function main {
-n | --nas-only)
NASONLY=true
;;
-l | --lint)
LINT=true
;;
*)
OPERATION=$1
;;
esac
shift
done
echo "\$@ is \"$@\""
echo "\$NASONLY is $NASONLY"
echo "\$LINT is $LINT"
echo "\$OPERATION is $OPERATION"
}
main "$@"