Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我运行脚本的方式:
ruby script.rb Arg1 [optional-Arg2]
如何运行 ruby 分析器并将输出发送到文件?
我试过这个:
ruby -r profile script.rb arg1 > out.txt
和一些引用混合在:
ruby -r profile "script.rb arg1" > out.txt
到目前为止没有任何工作。我究竟做错了什么??
没有测试,但是
ruby -r profile script.rb arg1 > out.txt 2>&1
应该做。探查器最有可能在 std_error 上打印内容,而不是在 std_out 上。