echo, not echo -n

This commit is contained in:
Nico Schottelius 2007-08-07 10:27:17 +02:00
parent 78c3dc1bd7
commit e3555ed018

View file

@ -14,7 +14,7 @@ self=$(basename $0)
# functions first # functions first
_echo() _echo()
{ {
echo -n "${self}> $@" echo "${self}> $@"
exit 1 exit 1
} }