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
python python_script.py filename
and in your Python script
import sys print sys.argv[1]