Skip to content

Instantly share code, notes, and snippets.

@Amarlanda
Forked from elentok/fl
Created April 4, 2022 11:31
Show Gist options
  • Save Amarlanda/5cd76c51d9eb0eb963115ebdd2638273 to your computer and use it in GitHub Desktop.
Save Amarlanda/5cd76c51d9eb0eb963115ebdd2638273 to your computer and use it in GitHub Desktop.
Open forklift from terminal
#!/bin/bash
# Open current directory in forklift
echo -n $PWD | pbcopy
(cat<<EOF
tell application "Forklift"
activate
tell application "System Events"
keystroke "G" using {command down}
keystroke "v" using {command down}
keystroke return
keystroke return
end tell
end tell
EOF
) | osascript
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment