- Mar 20, 2001
- 1,011
- 0
- 76
I want to run a program called "runall" which does the following:
#!/bin/bash
python 'prog1.py'
python 'prog2.py'
The programs take a long time and need to run in sequence. I set the permissions to executable (-rwxrw-r--), but it won't run. I get: "-bash: runall: command not found"
How do I do it?
#!/bin/bash
python 'prog1.py'
python 'prog2.py'
The programs take a long time and need to run in sequence. I set the permissions to executable (-rwxrw-r--), but it won't run. I get: "-bash: runall: command not found"
How do I do it?