I want to run multiple Python scripts from shell. I used pythonDim.sh script to do the same.
#!/usr/bin/python
/home/path_to_script/dimAO.py
/home/path_to_script/dimA1.py
/home/path_to_script/dimA2.py
/home/path_to_script/dimA3.py
But it's not working. How to write the shell script?
#!/usr/bin/env bashto run it via abashshell stackoverflow.com/questions/10376206/… or any other shebang depending on the shell you want to usepython /home/path_to_script/dimAO.py#!line says python, not a shell.dimA0.py. and is it necessary to make scripts executable?