i want run python script shell script. have been able run "command window" (cygwin), want able call shell script. not work way thought , internet has not helped me it.
my code far:
#!/bin/bash python calibrate.py
i hope me further. calibrate contains few basic command lines transform data has been read in excelreader in script itself.
just make sure python executable in path environment variable, add in script
in file job.sh,
#!/bin/sh python <path/to/python/script>/python_script.py
execute command make script runnable : chmod u+x job.sh
run : ./job.sh
Comments
Post a Comment