This repository has been archived on 2022-02-20. You can view files and clone it, but cannot push or open issues/pull-requests.
|
#!/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
|