I have a shell file in location
/home/transfer/check.sh
I need to excecute this shell file using python script
/home/transfer/check.sh
I need to excecute this shell file using python script
import commands output = commands.getstatusoutput('/home/transfer/check.sh')
Comment