我尝试自动化一个简单的工作流程。 它是终端的一个oneliner,没什么特别的。 并且还通过终端测试 - 它完美无缺。
在此工作流程中,应通过Automator启动R(运行shell脚本)。 但是通过Automator(运行shell脚本)启动R是不可能的。 有趣:通过automator-shell脚本运行“psql”也是不可能的,但“Python”也可以。
背后的秘密是什么? (R& psql通过普通终端运行完美。)
答案 0 :(得分:0)
在(mac)OS X中,使用Run Shell Script
操作启动自动播放程序。
尝试使用此命令:
Rscript -e "system('say hello')"
它应该工作。
闪亮app的示例:
Rscript -e "library(shiny);runExample('01_hello',launch.browser = T)"