10 lines
149 B
Plaintext
10 lines
149 B
Plaintext
|
quiet () {
|
||
|
if [ -n "$VERBOSE" ]; then $@; fi
|
||
|
}
|
||
|
silence() {
|
||
|
if [ -n "$VERBOSE" ] ; then
|
||
|
"$@"
|
||
|
else
|
||
|
"$@" > /dev/null
|
||
|
fi
|
||
|
}
|