# file   : .bash_aliases
# account: Originally created for math.uic.edu account (diochnos)
#

# Aliases for ls:
alias l="ls -F --color=always"     # Just because I am sloppy when I type ...
alias ls="ls -F --color=always"    # This way I can tell directories easily.
alias la="ls -AF --color=always"   # Ignore the "." and ".." directories.
alias ll="ls -lF --color=always"   # Due to my alias above for "ls", I used "F" again.
alias lal="ls -lAF --color=always" # exagerration? may be.. Feel free not to include it!
alias lla="ls -lAF --color=always" # exagerration? may be.. Feel free not to include it!
alias lar="ls -AFR --color=always" # exagerration? may be.. Feel free not to include it!
alias lra="ls -AFR --color=always" # exagerration? may be.. Feel free not to include it!


# aliases in bash don't handle parameter passing.
# Therefore, create a function especially for this purpose.
del () { /bin/mv -i ${*} ~/.Trash; }
