Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to have python generate the input parameter to my command line program (Linux), and simply cannot get it to work.

I know it is something to the effect of

./heap0 (python -c 'print "A"*72)

but that does not work....

share|improve this question

1 Answer

Try $(). It takes the output of a command and includes it as a value.

./heap0 $(python -c 'print "A"*72')
share|improve this answer
Thanks! That was what I needed! – user1620902 Sep 8 '12 at 18:26
1  
note that if the python script outputs data with whitespace, the shell will interpret that as multiple arguments. If you want to interpret the output as a single argument even if it contains space, wrap the whole thing in double quotes: "$(python -c '...')" – Mark Reed Sep 8 '12 at 18:31
If this was what you needed, why haven't you accepted the answer? – Barmar Oct 2 '12 at 5:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.