Tôi cần bao gồm tập lệnh python bên dưới tập lệnh bash.
Nếu tập lệnh bash kết thúc thành công, tôi cần thực thi tập lệnh bên dưới:
#!/usr/bin/python
from smtplib import SMTP
import datetime
debuglevel = 0
smtp = SMTP()
smtp.set_debuglevel(debuglevel)
smtp.connect('192.168.75.1', 25)
smtp.login('my_mail', 'mail_passwd')
from_addr = "My Name <my_mail@192.168.75.1>"
to_addr = "<my_mail@192.168.75.1"
subj = "Process completed"
date = datetime.datetime.now().strftime( "%d/%m/%Y %H:%M" )
#print (date)
message_text = "Hai..\n\nThe process completed."
msg = "From: %s\nTo: %s\nSubject: %s\nDate: %s\n\n%s" % ( from_addr, to_addr, subj, date, message_text )
smtp.sendmail(from_addr, to_addr, msg)
smtp.quit()
Tại sao "bao gồm" nó? Tại sao không chạy nó?
—
terdon
Để gọi bash-script từ python
—
Costas
import os
os.system ("./script.sh")
script.sh && python script.py
?