1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

udbToAny.ksh: don't hardcode path to awk

This commit is contained in:
Nina Didenko 2019-11-05 20:45:42 +03:00 committed by Jon Trulson
parent b3f3997bd1
commit 52caa8b8e6

View file

@ -102,9 +102,9 @@ ConvertRoutine()
shift
shift
AWK=/usr/bin/awk
if [ -x /usr/bin/nawk ]; then
AWK=/usr/bin/nawk
AWK=awk
if type nawk > /dev/null 2>&1; then
AWK=nawk
fi
#