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")
|
||||
|
||||
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()
|
||||
|
|
Reference in a new issue