I know that I can run a python script from my bash script using the following:
python python_script.py
But what about if I wanted to pass a
use in the script:
echo $(python python_script.py arg1 arg2) > /dev/null
or
python python_script.py "string arg" > /dev/null
The script will be executed without output.