# .alias-ksh - created by renner 12/05/01 last modified 2/22/02 # this file MUST be explicitly invoked from within your .profile # done properly, it will be interpretted with each new session call # each user should add/delete new options as desired # abbreviate screen clear and emacs editor alias c=clear alias e=emacs # establish clean routine to remove unwanted filetypes alias clean="rm -r *~ .*~ #*# core" # define a list routine to display all files in long form with paging alias la="ls -alF | more" # put safety feature into remove command (can be annoying) alias rm="rm -i" alias rmdir="rm -r -i" # fast FIND commands to assist in locating large, old, or specific named files alias findbig='find . -size +1000 -exec ls -l {} \;' alias findold='find . -atime +125 -exec ls -l {} \;' alias findname="find . -name '\!*' -print" alias clisp="/user/projects/ai/bin/clisp" # Print to parrot in OCNL241 (from HPs) alias print="lpr -Pparrot" # Print landscape mode to parrot alias printwide="lpr -Pparrot -" echo alias-ksh file has completed running #end of .alias-ksh file