假设我希望rsgen.py
的输出用作references
脚本的simulate.py
参数。我该怎么做?
在simulate.py
parser.add_argument("references", metavar="RS", type=int, nargs="+", help="Reference string to use")
我试过
# ./simulate.py references < rs.txt
usage: simulate.py [-h] [--numFrames F] [--numPages P] RS [RS ...]
simulate.py: error: argument RS: invalid int value: 'references'
# ./simulate.py < rs.txt
usage: simulate.py [-h] [--numFrames F] [--numPages P] RS [RS ...]
simulate.py: error: too few arguments
我相信我的管道语法错了,我该如何解决?
理想情况下,我想直接将rsgen.py
的输出传输到references
simulate.py
参数中
答案 0 :(得分:3)
如果您想使用rsgen.py的输出作为simulate.py的命令行参数,请使用运行包含命令的反引号并将输出放入命令行
./simulate.py `./rsgen.py`
答案 1 :(得分:3)
如果您需要将rsgen.py
的输出作为参数,那么最佳解决方案是使用command substitution。语法根据您使用的shell而有所不同,但以下内容适用于大多数现代shell:
./simulate.py references $(./rsgen.py)
旁注,Brian Swift的回答使用反引号进行命令替换。语法在大多数shell上都有效,但缺点是嵌套效果不好。
另一方面,如果您想将脚本的输出传递给另一个,您应该阅读sys.stdin
示例:
<强> a.py 强>
print "hello world"
<强> b.py 强>
import sys
for i in sys.stdin:
print "b", i
<强>结果强>:
$ ./a.py | ./b.py
b hello world