复制 IP 并在 Applescript 中使用
Copy IP and use in Applescript
我正在使用 Keyboard Maestro 并在其中使用 applescript 执行以下操作:
- 从任何地方复制 IP 地址
- 打开终端
- 使用复制的 IP 到 applescript
从某处复制的 IP 上的 ssh
tell application "Terminal"
activate
do script "ssh & the clipboard" -- this always opens a new window
结束讲述
请帮助我解决如何在 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
我正在使用 Keyboard Maestro 并在其中使用 applescript 执行以下操作:
- 从任何地方复制 IP 地址
- 打开终端
- 使用复制的 IP 到 applescript
从某处复制的 IP 上的 ssh
tell application "Terminal" activate do script "ssh & the clipboard" -- this always opens a new window
结束讲述
请帮助我解决如何在 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