Python argparse& Unix管道到参数

时间:2012-03-28 07:26:10

标签: python unix pipe command-line-arguments argparse

假设我希望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参数中

2 个答案:

答案 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