Skip to content

Instantly share code, notes, and snippets.

@caramelchocolate
Last active October 25, 2018 05:18
Show Gist options
  • Save caramelchocolate/ac0a9de5970b7a6cc15248553485ded7 to your computer and use it in GitHub Desktop.
Save caramelchocolate/ac0a9de5970b7a6cc15248553485ded7 to your computer and use it in GitHub Desktop.
Transmitのお気に入りをすべて表示する。
tell application "Transmit"
set favoriteList to favorites
repeat with i from 1 to (count favoriteList)
set theServer to item i of favoriteList
set theServerProperties to {address of theServer, local path of theServer, port of theServer, protocol of theServer, remote path of theServer, name of theServer, user name of theServer, identifier of theServer}
log theServerProperties
end repeat
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment