Output of bacrp command has return+line-feed dos style output. Added return+line-feed to echo statements to keep output consistent if piped to a file. It will now create a valid DOS file.

This commit is contained in:
brayra
2009-07-16 19:09:52 +00:00
parent fb1b2a9c90
commit 91a3c7c11f
+3 -3
View File
@@ -38,7 +38,7 @@ fi
run_test()
{
echo "Test: Read Required Properties of Device Object $1"
echo -e -e "Test: Read Required Properties of Device Object $1\r"
echo -n "OBJECT IDENTIFIER:"
./bacrp $1 8 $1 75
echo -n "OBJECT NAME:"
@@ -82,7 +82,7 @@ run_test()
echo -n "DATABASE REVISION:"
./bacrp $1 8 $1 155
if [ $OPTIONAL -eq 1 ] ; then
echo "Test: Read Optional Properties of Device Object $1"
echo -e "Test: Read Optional Properties of Device Object $1\r"
echo -n "LOCATION:"
./bacrp $1 8 $1 58
echo -n "DESCRIPTION:"
@@ -132,7 +132,7 @@ run_test()
echo -n "PROFILE NAME:"
./bacrp $1 8 $1 168
fi
echo " "
echo -e " \r"
}
while [ $# -gt 0 ] ; do