added go lang and bind-mount module

trantor
David Kebler 2020-11-13 09:58:36 -08:00
parent f9a4fa9cef
commit cb952b26b2
2 changed files with 32 additions and 0 deletions

8
all/lang/go Normal file
View File

@ -0,0 +1,8 @@
# --- Go Language Environment BEGIN ---
export GOROOT=/opt/go
export PATH=$PATH:/opt/go/bin
export GOPATH=/opt/go/apps
export PATH=$PATH:/opt/go/apps/bin
# --- Go Language Environment END ---

View File

@ -0,0 +1,24 @@
#!/bin/bash
# must have fuser and bindfs installed
function bmount () {
if [ "$1" == "-mp" ]; then
MOUNTED=$(mountpoint "$2" | grep not)
if [ -z "$MOUNTED" ]; then
echo $2 is a mount point so bind mounting $2/$3 to $4
notify-send "bind mounting ${2}/${3} to ${4}" --icon=dialog-information -t 2000
bindfs "$2/$3" "$4"
else
notify-send "${2} not a mount point - Unable to bind mount ${2}/${3} to ${4}" --icon=dialog-error -t 2000
fi
else
echo bind mounting $1 to $2
notify-send "bind mounting ${1} to ${2}" --icon=dialog-information -t 2000
bindfs "$1" "$2"
fi
}
bumount () {
echo "removing bind mount at $1"
notify-send "removing bind mount at ${1}" --icon=dialog-information -t 2000
fusermount -u "$1"
}