dam/src/parser

39 lines
432 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 ${@}
;;
du)
shift
cmd_du "${@}"
;;
fsck)
shift
cmd_fsck "${@}"
;;
esac