Max Mahn

aboutsummaryrefslogtreecommitdiff
path: root/src/util.sh
blob: f190a821b9534d0571066a8630d2c0b52767d18e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

Error() {
  echo "$@" 1>&2
}

Unquote() {
  out=${1#\'}
  echo "${out%\'}"
}

VERBOSITY=0
Debug() {
  [ $1 -le $VERBOSITY ] && shift && echo "$@" >&2
}