Use /usr/bin/env instead of raw path, for compatibility between Linux and FreeBSD systems
This commit is contained in:
parent
0d26658a35
commit
05537dc903
1 changed files with 4 additions and 4 deletions
|
|
@ -2,10 +2,10 @@
|
||||||
|
|
||||||
cd $(dirname "$0")
|
cd $(dirname "$0")
|
||||||
|
|
||||||
GREP='/bin/egrep'
|
GREP='/usr/bin/env grep -E'
|
||||||
SCREEN='/usr/bin/screen'
|
SCREEN='/usr/bin/env screen'
|
||||||
SED='/bin/sed -E'
|
SED='/usr/bin/env sed -E'
|
||||||
SU='/bin/su -s /bin/sh'
|
SU='/usr/bin/env su -s /bin/sh'
|
||||||
PERL='/usr/bin/env perl'
|
PERL='/usr/bin/env perl'
|
||||||
|
|
||||||
launch_screen()
|
launch_screen()
|
||||||
|
|
|
||||||
Reference in a new issue