function gv() { kghostview $*; } function cdl() { cd $1 && ls -CFA; } function xx() { $1 `\ls --format=single-column -t | head -1`; } function yy() { $1 `\ls --format=single-column -t | tail -1`; } function print() { pr $1 > /dev/lp0; } function rem() { mv -i $* ~/Wastebasket; } function ll() { ls -lFAG $* | more; } function lllt() { ls -ltFAG $* | more; } function lll() { ls -ltFAG $* | more; } function lr() { ls -RCFA $* | more; } function lt() { ls -ltFAG $* | more; } function pdf() { FILE=`basename $1 .tex`;echo $FILE is being processed; # pdflatex $FILE && mv -f $FILE.pdf ,,$FILE.pdf && acroread ,,$FILE.pdf ; pdflatex $FILE && acroread $FILE.pdf ; } function lat() { FILE=`basename $1 .tex`;echo $FILE is being processed; latex $FILE && xdvi $FILE && dvips $FILE -o ,,$FILE.ps ; } function xt() { (cd; xterm -fn 10x20 -fg white -bg "#$*") & } function tx() { (cd; xterm -fn 10x20 -bg white -fg "#$*") & } myls() { ls --almost-all --color=auto $*; } function send() { scp -r $* pga@${RIT}.cs.rit.edu:~/Send; echo ; } function get() { scp -r pga@${RIT}.cs.rit.edu:~/$* ~/Get/; } function locateme() { locate $* | egrep 'anderson';} function ssh-go() { ssh-agent >| /tmp/ssh . /tmp/ssh ssh-add ~/.ssh/id_dsa }