作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 AppleScript 的新手。我需要一个脚本来打开 3 个 iTerm 选项卡并分别执行 3 个命令行程序。第一个程序终止,而最后两个程序不确定地运行。
这是我的:
tell application "iTerm"
activate
set next to (make new terminal)
tell next
activate current session
launch session "Default Session"
tell the last session
set name to "vagrant-db"
write text "cd ~/Workspace/vagrant-db; vagrant up"
end tell
launch session "Default Session"
tell the last session
set name to "next/core"
write text "cd ~/Workspace/next"
write text "/usr/local/bin/sbt \"project core\" \"run\""
end tell
launch session "Default Session"
tell the last session
set name to "next/web"
write text "cd ~/Workspace/next"
write text "/usr/local/bin/sbt \"project web\" \"~re-start\""
end tell
end tell
end tell
问题是我需要等待第一个命令行操作结束(vagrant 启动),然后再发出第二个和第三个。有办法吗?
最佳答案
不确定是否可行,但也许可以使用来自 applescript 的“do shell script”命令,例如
set response to do shell script "ls"
将返回根文件夹的内容。
另一种方法(但非常丑陋)是使用“延迟”。例如
delay 5
会延迟5秒
关于applescript - 在 AppleScript 中发出新操作之前等待命令行程序执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24383787/
我是一名优秀的程序员,十分优秀!