I have been searching for an answer to no avail. I have a python script that I would like to run that has quite a few arguments. It works just fine when I run the command from the terminal, but as soon as I try to put it in a bash script it no longer works.
script.py --arg1 --arg2 --arg3 --arg4 --arg5
This works.
#!/bin/bash
script.py --arg1 --arg2 --arg3 --arg4 --arg5
This does not. I get no error message or output.