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