#!/bin/tcsh -f

#	Aliases for all shells (interactive or not).

alias rm  '/bin/rm -ri' # Prompt removal.
alias frm '/bin/rm -rf'	# Force a removal.
#alias rm ~/bin/safe_rm	# Safe remove, stashes the file for a few days.
alias mv '/bin/mv -i'	# Query to warn you if clobbering something.
alias cp '/bin/cp -ri'	# Query to warn you if clobbering something.
alias mkdir '/bin/mkdir -p' # Make parent directories if they don't exist

alias sh  tcsh		# This helps you always get the same (C) shell

alias ll 'ls -l \!* | more'	# A long listing, a page at a time.
#alias ll 'ls -l --color=tty \!*'	# A long listing, a page at a time.
alias l. "ls -Al | egrep '( \..*)' | more"  # List only files starting with . 

alias backspace 'stty erase ^H' #set the backspace key
