mirror of
https://salsa.debian.org/images-team/debian-cd.git
synced 2024-11-24 15:19:51 -01:00
23 lines
276 B
Plaintext
23 lines
276 B
Plaintext
# Local definitions for vecho and friends, source when necessary.
|
|
|
|
function vecho ()
|
|
{
|
|
if [ $VERBOSE -gt 0 ] ; then
|
|
echo "$@"
|
|
fi
|
|
}
|
|
|
|
function vvecho ()
|
|
{
|
|
if [ $VERBOSE -gt 1 ] ; then
|
|
echo "$@"
|
|
fi
|
|
}
|
|
|
|
function vvvecho ()
|
|
{
|
|
if [ $VERBOSE -gt 2 ] ; then
|
|
echo "$@"
|
|
fi
|
|
}
|