prevent accidental destruction of everything

This commit is contained in:
Mirek Kratochvil 2014-06-05 21:27:25 +02:00
parent be5802b120
commit 36de0d4c62

View file

@ -5,6 +5,11 @@ if [[ -z "$1" || -z "$2" ]] ; then
exit 1
fi
if [[ "$2" -lt 100 ]] ; then
echo "density must not be lower than 100" >&2
exit 2
fi
timestamp () {
t="`echo \"$1\" |sed -ne 's/^.*@zb-//p' |tr 'p_' '+ '`"
[[ -z "$t" ]] && return 1