Originally Posted By: JBjorgen
Speaking of keyboard shortcuts, is there anyway on a Mac to delete something and bypass the trash can.

Not built in, but you can set up this applescript with a trigger in Quicksilver:

Code:
set things to (get selection of application "Finder")
set rmargs to ""
repeat with thing in things
	set rmargs to rmargs & " " & quoted form of POSIX path of (thing as alias)
end repeat
do shell script "rm -rf" & rmargs
_________________________
Bitt Faulk