复制 IP 并在 Applescript 中使用

Copy IP and use in Applescript

我正在使用 Keyboard Maestro 并在其中使用 applescript 执行以下操作:

请帮助我解决如何在 applescript 中使用 "copied" 文本来执行 ssh,因为我不想在脚本中直接写 IP

好的得到答案

set ipaddress to the clipboard  tell application "Terminal"     
activate     
do script "ssh " & ipaddress & " " -- this always opens a
new window end tell