now checking if `mantpath` is present before using it

master
Michael Ochmann 3 years ago
parent f2794de345
commit 02e7bfe61b
  1. 14
      .bashrc

@ -229,6 +229,20 @@ digfull() {
dig +nocmd $1 any +multiline +noall +answer
}
sshttp() {
if [ -z "$3" ]
then
port=80
else
port=$3
fi
ssh -L 9000:$1:$port $2
}
sshttps() {
sshttp $1 $2 443
}
# ENVIRONMENT
NPM_PACKAGES="${HOME}/.npm-packages"

Loading…
Cancel
Save