7 lines
168 B
Bash
7 lines
168 B
Bash
#!/bin/sh --noprofile
|
|
|
|
unset BASH_ENV
|
|
|
|
declare -r bindir=$( cd $(dirname $0) && pwd -P )
|
|
"${bindir}/bash" --noprofile --norc "${bindir}/../libexec/modulecmd.bash" "$@"
|