Last active
November 13, 2019 23:39
-
-
Save osmszk/531ad8bee8802772d7abff51e104d5c4 to your computer and use it in GitHub Desktop.
bashrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias ll='ls -laG' | |
alias rm='rm -i' | |
alias f="open ." | |
cdf () { | |
finderPath=`osascript -e 'tell application "Finder" | |
try | |
set currentFolder to (folder of the front window as alias) | |
on error | |
set currentFolder to (path to desktop folder as alias) | |
end try | |
POSIX path of currentFolder | |
end tell'`; | |
cd "$finderPath" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment