Code Review
/
common
/
bash_it.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
63d5e7b
)
added alias for opening finder using f <dir>
author
Rich Manalang
<rich.manalang@gmail.com>
Thu, 7 Oct 2010 20:34:42 +0000
(13:34 -0700)
committer
Rich Manalang
<rich.manalang@gmail.com>
Thu, 7 Oct 2010 20:34:42 +0000
(13:34 -0700)
plugins/osx.plugin.bash
patch
|
blob
|
history
diff --git
a/plugins/osx.plugin.bash
b/plugins/osx.plugin.bash
index
a2ad79b
..
1dd9266
100644
(file)
--- a/
plugins/osx.plugin.bash
+++ b/
plugins/osx.plugin.bash
@@
-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
-}
\ No newline at end of file
+}