10 lines
216 B
Plaintext
10 lines
216 B
Plaintext
|
#!/bin/bash
|
||
|
source $BASH_SHELL_BASE/module.lib
|
||
|
module_load helpers
|
||
|
NAME=${1:-$(filename $0)}
|
||
|
DIR=$(adirname "$0")
|
||
|
BIN=${1:-/opt/bin/$NAME}
|
||
|
chown :users $DIR/$NAME.sh
|
||
|
chmod 755 $DIR/$NAME.sh
|
||
|
ln -sf $DIR/$NAME.sh $BIN
|