Created
January 24, 2022 20:17
-
-
Save defmech/f068ee9260e6e33eb597c19e18a97ba1 to your computer and use it in GitHub Desktop.
Copies directory listing, of front Finder window, to clipboard.
This file contains hidden or 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
tell application "Finder" | |
set pathList to (quoted form of POSIX path of (folder of the front window as alias)) | |
end tell | |
tell application "Terminal" | |
do shell script "cd " & pathList & "; ls | pbcopy" | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment