summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconvert-submenu2menuorg.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/convert-submenu2menuorg.sh b/convert-submenu2menuorg.sh
index 92ab1e3..10beb5a 100755
--- a/convert-submenu2menuorg.sh
+++ b/convert-submenu2menuorg.sh
@@ -27,7 +27,7 @@ if [ a"$2" == a"" ]; then echo $usage && exit 1; fi
declare -a menu
-echo "read the input file"
+echo -n "read the input file... "
while read line
do
menuLevel=`echo $line|cut -d: -f1`
@@ -42,8 +42,8 @@ do
fi
done < $1
-
-echo "write the xml to the output file"
+echo done
+echo -n "write the xml to the output file... "
echo "<menus>" > $2
COUNT=0
for item in `echo ${menu[0]}`