dotar/vim/snippets/sh/$#.snippet
2011-11-17 16:00:49 -06:00

7 lines
84 B
Plaintext
Executable File

if [ $# -lt 1 ]; then
echo "${1:#missing arguments}"
exit 1
else
${2:#action}
fi