5 lines
62 B
Bash
5 lines
62 B
Bash
echov () {
|
|
if [ $VERBOSE -eq 1 ]; then
|
|
echo "$@"
|
|
fi
|
|
}
|