echo, not echo -n

This commit is contained in:
Nico Schottelius 2007-08-07 10:27:17 +02:00
parent 78c3dc1bd7
commit e3555ed018
1 changed files with 1 additions and 1 deletions

View File

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