summaryrefslogtreecommitdiff
path: root/src/validators/numeric-exclude
blob: d693ad16d1db92a5981053e7a20ccec6c653e04f (plain)
1
2
3
4
5
6
7
8
#!/bin/sh
path=$(dirname "$0")
num="${@: -1}"
if [ "${num:0:1}" != "!" ]; then
   ${path}/numeric $@
else
    ${path}/numeric ${@:1:$#-1} ${num:1}
fi