15 lines
160 B
Bash
Executable File
15 lines
160 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#echo "message: verbose = $VERBOSE"
|
|
|
|
if ($VERBOSE)
|
|
then
|
|
exit 0;
|
|
fi
|
|
|
|
a=$MAKELEVEL
|
|
|
|
while ((0<$a)); do echo -n " "; let "a = $a - 1";done
|
|
|
|
echo $1
|