Mercurial > index.cgi > dotfiles
view .bash_aliases @ 15:fe83d9892ee3
Replaced tests with a 'case' in .bash_aliases
Added modeline in .bash_aliases to help vim see filetype
Started work on Toodledo -> ~/.todo; so far not bad, but the Ruby gem might be
buggy and cause problems. Idea is still somewhat sound, so instead of ripping
out the code I'll just comment around it for now.
author | huston@80426f53-59d1-405d-934b-f07cd76f4a1a |
---|---|
date | Sun, 30 Aug 2009 20:37:09 +0000 |
parents | dacbbae5965c |
children | f65964738bab |
line wrap: on
line source
case `uname` in Darwin) # DARWIN is used for the SSHFS mounts below DARWIN="yes" alias ls='ls -FG' ;; Linux) alias ls='ls --color=auto -F' ;; esac # SSH aliases alias dh='ssh srhuston.net' alias dvra='ssh dvra@laurel.dreamhost.com' alias j='ssh joshua.srhuston.net' alias r='ssh -l root' alias roc='ssh zenoss@rocinante' alias s=ssh alias x='ssh xanadu.astro.princeton.edu' # Remote desktop/VNC alias bynarr='rdesktop -a 16 bynarr -g 1593x1109' # Programs alias atari='atari800 -height 800 -width 600' alias base64='openssl enc -a' alias bsr='bigscreen -raAx' alias irssi-test='irssi --home=~/irssi-test/' alias ret='screen -raAx' alias rot13="tr 'a-zA-Z' 'n-za-mN-ZA-M'" alias stendhal="java -jar ~/Installs/stendhal/stendhal-*.jar" alias vi='vim' # SSHFS mounts # The $DARWIN check fills in a nice volname if this is a Mac alias junkpile="sshfs -oreconnect${DARWIN:+,volname=Junkpile} srhuston.net:junkpile ~/junkpile" alias sharm="sshfs -oreconnect${DARWIN:+,volname=Harmonic} harmonic.srhuston.net: ~/harmonic" alias sj="sshfs -oreconnect${DARWIN:+,volname=Joshua} joshua.srhuston.net: ~/joshua" alias sdh="sshfs -oreconnect${DARWIN:+,volname=srhuston.net} srhuston.net: ~/srhuston.net" alias sx="sshfs -oreconnect${DARWIN:+,volname=Xanadu} xanadu.astro.princeton.edu: ~/xanadu" # Other alias condor_check="ls -lat /u/condor/hosts/*/log/MasterLog /scr/chimera0/condor/hosts/*/log/MasterLog" # vim: set filetype=sh :