dam/src/parser

29 lines
325 B
Text
Raw Normal View History

#!/bin/bash
###
# Parses arguments and commands from shell
###
case "${1}" in
exclude)
shift
cmd_exclude ${@}
;;
include)
shift
cmd_include ${@}
;;
deploy)
shift
cmd_deploy ${@}
;;
update)
shift
cmd_update ${@}
;;
esac