diff --git a/sh/program.sh b/sh/program.sh index 413e686..7b28559 100755 --- a/sh/program.sh +++ b/sh/program.sh @@ -92,19 +92,6 @@ PROMPTLIST="foo bar baz bat" -# -# Common Program Locations -# - -AWK="/usr/bin/awk" -ECHO="/usr/bin/echo" -LS="/usr/bin/ls" -PERL="/usr/bin/perl" -PRINTF="/usr/bin/printf" -PYTHON="/usr/bin/python" -SED="/usr/bin/sed" - - ##### # Function Definitions ##### @@ -115,7 +102,7 @@ ErrorMsg() { - ${PRINTF} "${*}\n" >&2 + printf "${*}\n" >&2 } # End of 'ErrorMsg()' @@ -127,7 +114,7 @@ PrintMsg() { - ${PRINTF} "${*}\n" + printf "${*}\n" } # End of 'PrintMsg()'