Skip to content

Instantly share code, notes, and snippets.

@ldavidh
ldavidh / moreFinderTerminal.sh
Last active November 11, 2024 20:35
alternate sel script
#cd into directory in Finder's front window
function cdf() {
finderPath=`osascript -e 'try
tell application "Finder" to set the source_folder to (folder of the front window) as alias
on error
tell application "Finder" to set source_folder to insertion location as alias
end try
return POSIX path of source_folder as string'`
cd "$finderPath"