added alias for opening finder using f <dir>

pull/5/head
Rich Manalang 2010-10-07 13:34:42 -07:00
parent 63d5e7be5e
commit c94ccf1a39
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
#!/bin/bash
alias f='open -a Finder '
function tab() {
osascript 2>/dev/null <<EOF
tell application "System Events"
@ -10,4 +12,4 @@ function tab() {
do script with command "cd \"$PWD\"; $*" in window 1
end tell
EOF
}
}