Remove the use of /bin/echo -e to echo

This commit is contained in:
Kurt Hindenburg
2012-03-09 22:58:33 -05:00
parent ebc4888fef
commit cd090f2d1d

View File

@@ -35,5 +35,8 @@ if [ ! $# -eq 1 ]
exit 0
fi
/bin/echo -e "\033]50;$1\a"
# Depending on version of echo, -e may be needed.
# Do we need to check echo version?
#echo -e "\033]50;$1\a"
echo "\033]50;$1\a"