Archived
1
0
Fork 0

Use /usr/bin/env instead of raw path, for compatibility between Linux and FreeBSD systems

This commit is contained in:
Mercier Pierre-Olivier 2013-10-01 04:37:15 +02:00
parent 0d26658a35
commit 05537dc903

View file

@ -2,10 +2,10 @@
cd $(dirname "$0")
GREP='/bin/egrep'
SCREEN='/usr/bin/screen'
SED='/bin/sed -E'
SU='/bin/su -s /bin/sh'
GREP='/usr/bin/env grep -E'
SCREEN='/usr/bin/env screen'
SED='/usr/bin/env sed -E'
SU='/usr/bin/env su -s /bin/sh'
PERL='/usr/bin/env perl'
launch_screen()