Skip to content
Advertisement

How to exclude print commands of python script in variable of shell script

I have a python script called spark.py. This scipt will be invoked using a shell script in Linux.

The spark.py is like below:

JavaScript

The shell.sh is like below

JavaScript

In this shell script I am collecting the output of the spark.py as a variable. When I do so I am unable to see any print commands of the spark.py in the console logs in Linux.

How can I have all the print commands to be printed in the linux console logs.

And In my spark.py script I have

JavaScript

How can I exclude the print error_message while collecting the output as a variable in the shell.sh .

Advertisement

Answer

A simple way would be to add echo "$result" to your shell script. You could also revise the sub command to add a tee at the end: result=$(... | tee /dev/stderr ).

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