Skip to main content

macos/ffile

1#!/usr/bin/env osascript
2# Get the path to the first item which is selected in the
3# frontmost Finder window.
5tell application "Finder"
6 get POSIX path of first item of (selection as alias list)
7end tell