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.
我试图让 python 为我的命令行程序(Linux)生成输入参数,但根本无法让它工作。
我知道它的效果是
./heap0 (python -c 'print "A"*72)
但这不起作用....
试试$()。它接受命令的输出并将其作为值包含在内。
$()
./heap0 $(python -c 'print "A"*72')