使用AppleScript在终端中写入字符串

时间:2018-10-28 21:36:07

标签: string terminal applescript

我只想在终端上用applescript书写,例如,hello world,不用回车,因为我必须能够在文本后继续书写...我该如何进行?

tell application "Terminal"
    - Some Command for Write "Hello" -
end tell

预先感谢

1 个答案:

答案 0 :(得分:0)

要执行终端命令,请尝试以下操作:

tell application "Terminal"
    do script "echo 'Hello world'"
end tell

希望有帮助!