aboutsummaryrefslogtreecommitdiffstats
path: root/.zshrc-linux-desktop
blob: 6acd5335d9dacb47415f1064bee79fedd7267772 (plain)
1
2
3
4
5
6
7
8
9
################### ALIASES ##################

alias ssh-socks='ssh -C2qTnN -F /dev/null -D 9853 shmibbles.me'

if [[ "$(whence sshfs)" != "" ]] then
	alias smounth='mkdir -p ~/shmibbles.me; sshfs shmibbles.me: ~/shmibbles.me'
	alias smountw='mkdir -p ~/shmibbles.me; sshfs shmibbles.me:/usr/local/www/apache24/data/ ~/shmibbles.me'
	alias sumount='fusermount -u ~/shmibbles.me; rmdir ~/shmibbles.me'
fi