1
使用Applescript,是否可以打開新的終端並將命令輸入終端,但不運行它?使用Applescript將命令輸入到終端中,但不執行
tell application "Terminal"
do script "echo Hello"
end tell
此代碼將在終端中鍵入行echo Hello
並運行它。我們可以避免執行嗎?
使用Applescript,是否可以打開新的終端並將命令輸入終端,但不運行它?使用Applescript將命令輸入到終端中,但不執行
tell application "Terminal"
do script "echo Hello"
end tell
此代碼將在終端中鍵入行echo Hello
並運行它。我們可以避免執行嗎?
系統事件的應用程序和模擬按鍵很好的例子:
tell application "Terminal" to activate -- only needed if Terminal may not be running
tell application "System Events"
tell application process "Terminal"
set frontmost to true
keystroke "echo Hello"
end tell
end tell