作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
尝试检索我的 shell 命令的输出,所以我将它分配给一个变量并尝试通过 LogSuccess 命令记录它。
put shell ("cat login.txt") into myOutput
LogSuccess myOutput
不幸的是,我没有在日志中看到任何内容,也不知道该命令实际上已发送到 shell。有人知道我错过了什么吗?
最佳答案
当前eggPlant API 不返回shell()
命令的输出。一个不错的解决方案是将命令的输出重定向到一个文件,并立即读取它。
set destinationFile to "~/tempfile"
shell "cat login.txt > " & tempFile
LogSuccess file destinationFile
上面的代码示例将显示命令的输出。
关于shell - 如何从 Eggplant shell 脚本命令中检索输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25147441/
我是一名优秀的程序员,十分优秀!