petdance /.bash_aliases

#!/bin/sh

# Standard ls options.  Should really go in LSOPTIONS
alias ls='ls -F'
alias ll='ls -lF'

# Find & delete all backup files
alias sweep='find . \( -name "*~" -or -name "*.bak" \) -exec rm -v -f {} \;'

# Show me status of files, but not files Subversion doesn't recognize
alias ssq='svn status -q'

# Module::Build uses "./Build", which is annoying to type
alias build=./Build

# Check ptop with default options
alias ptop='ptop -y nobody -z flr'

# From Ed Silva, shows the memory pigs
alias memusage='ps -o rss,command -waxc | sort -n'