diff options
author | svntcreutz <svntcreutz@cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f> | 2007-08-18 20:19:58 +0000 |
---|---|---|
committer | svntcreutz <svntcreutz@cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f> | 2007-08-18 20:19:58 +0000 |
commit | 827469c2debb7351740ca6d88423e4c19ad986ee (patch) | |
tree | 579f734150277bb9d3cc2f1b27af232ec31b1575 | |
parent | 1047b5cf744577de28058e720592882d02debd68 (diff) | |
download | vdr-plugin-menuorg-827469c2debb7351740ca6d88423e4c19ad986ee.tar.gz vdr-plugin-menuorg-827469c2debb7351740ca6d88423e4c19ad986ee.tar.bz2 |
some "Eye Candy" stuff in the convert script changed
git-svn-id: file:///home/tobias/sandbox/vdr/--/vdr-pkg/vdr-pkg/submenu/trunk@5806 cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f
-rwxr-xr-x | convert-submenu2menuorg.sh | 6 |
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]}` |