Skip to content
Advertisement

piping from stdin to a python code in a bash script

I have a bash script, f, that contains python code. That python code reads from standard input. I want to be able to call my bash script as follows:

JavaScript

In the example above, the python code will read from input.txt and will write to output.txt.

I’m not sure how to do this. I know that if I wanted to just write to a file, then my bash script would look like this

JavaScript

I tried changing the second line in the code above to the following, but without luck

JavaScript

I’m not sure how else to go about doing this. Any suggestions?

EDIT I’ll give a more concrete example. Consider the following bash script, f

JavaScript

I want to run my code with the following command

JavaScript

How do I change my bash script so that it uses “input.txt” as the input stream?

Advertisement

Answer

Updated Answer

If you absolutely must run the way you ask, you could do something like this:

JavaScript

Original Answer

Save your python code in a file called script.py and change your script f to this:

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement