diff options
author | June McEnroe <june@causal.agency> | 2019-11-22 20:04:02 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-11-22 20:04:02 -0500 |
commit | ef9d1d252d52f98ab1aab397351e13755c76d6ab (patch) | |
tree | 62606a8d5327b64bd50075119126e767d0c659ca | |
parent | Remove Linux aliases from .shrc (diff) | |
download | src-ef9d1d252d52f98ab1aab397351e13755c76d6ab.tar.gz src-ef9d1d252d52f98ab1aab397351e13755c76d6ab.zip |
Add bman alias for FreeBSD man pages
-rw-r--r-- | home/.shrc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/home/.shrc b/home/.shrc index c863c337..45b2fe62 100644 --- a/home/.shrc +++ b/home/.shrc @@ -16,6 +16,7 @@ alias gp='git push' gu='git pull' gf='git fetch' alias gr='git rebase' gra='gr --abort' grc='gr --continue' grs='gr --skip' alias rand='openssl rand -base64 33' alias private='eval "$(gpg -d ~/.private)"' +bman() { ssh ${freebsd:-monday} man "$@" | sh -c "$MANPAGER"; } PS0=$'\n' PS1='\$ ' |