尽管先前的 If 语句为真,但执行了 Elif 语句
Elif statement executed despite previous If Statement being True
在 Udemy 上的课程之后,我一直在尝试制作一个程序,使用 ifconfig 命令,使用 subprocess 和 optparse 模块自动更改 Linux 中接口的 mac 地址.
我的问题是关于下面 get_arguments() 函数中的 elif 语句。
我想要它,这样如果程序在命令行上 运行 没有指定参数,那么将要求用户输入接口和 new_mac 变量。
下面写的 get_arguments() 函数,
elif not options.interface:
parser.error("[-] Please specify an interface. Use -- help for more info.")
将被执行,打印文本并使用 parser.error() 停止程序,
如果在命令行上 运行 运行程序时没有指定参数,甚至不要求输入。
但是,这样写,
if options.interface or options.new_mac:
if not options.interface:
parser.error("[-] Please specify an interface. Use -- help for more info.")
if not options.new_mac:
parser.error("[-] Please specify a new MAC address. Use --help for more info.")
else:
return options
程序将停止获取输入,一切正常。
程序如下:
#!/usr/bin/env python
import subprocess
import optparse
def get_arguments():
parser = optparse.OptionParser()
parser.add_option("-i", "--interface", dest="interface", help="Interface to change MAC address")
parser.add_option("-m", "--mac", dest="new_mac", help="New MAC address")
(options, arguments) = parser.parse_args()
if not options.interface and options.new_mac:
options = False
return options
elif not options.interface:
parser.error("[-] Please specify an interface. Use -- help for more info.")
elif not options.new_mac:
parser.error("[-] Please specify a new MAC address. Use --help for more info.")
else:
return options
def change_mac(interface, new_mac):
print("[+] Changing MAC address for '" + interface + "' to '" + new_mac + "'")
subprocess.call(["sudo", "ifconfig", interface, "down"])
subprocess.call(["sudo", "ifconfig", interface, "hw", "ether", new_mac])
subprocess.call(["sudo", "ifconfig", interface, "up"])
subprocess.call(["sudo", "ifconfig", interface])
print("[+] Done!")
options = get_arguments()
if not options:
interface = raw_input("Specify interface > ")
new_mac = raw_input("Specify new MAC address > ")
change_mac(interface, new_mac)
else:
change_mac(options.interface, options.new_mac)
只要在解析后立即检查是否为每个选项都赋予了值,并在此时提示用户输入值。不需要 elif
;单独处理每一个。
另外,不要使用optparse
;请改用 argparse
。
#!/usr/bin/env python
import subprocess
import argparse
def get_arguments():
parser = argparse.ArgumentParser()
parser.add_argument("-i", "--interface", dest="interface", help="Interface to change MAC address")
parser.add_argument("-m", "--mac", dest="new_mac", help="New MAC address")
args = parser.parse_args()
if args.interface is None:
args.interface = raw_input("Specify interface > ")
if args.new_mac is None:
args.new_mac = raw_input("Specify new MAC address > ")
return args
def change_mac(interface, new_mac):
print("[+] Changing MAC address for '" + interface + "' to '" + new_mac + "'")
subprocess.call(["sudo", "ifconfig", interface, "down"])
subprocess.call(["sudo", "ifconfig", interface, "hw", "ether", new_mac])
subprocess.call(["sudo", "ifconfig", interface, "up"])
subprocess.call(["sudo", "ifconfig", interface])
print("[+] Done!")
args = get_arguments()
change_mac(args.interface, args.new_mac)
我也强烈建议,作为初学者,你切换到Python 3.
在 Udemy 上的课程之后,我一直在尝试制作一个程序,使用 ifconfig 命令,使用 subprocess 和 optparse 模块自动更改 Linux 中接口的 mac 地址.
我的问题是关于下面 get_arguments() 函数中的 elif 语句。 我想要它,这样如果程序在命令行上 运行 没有指定参数,那么将要求用户输入接口和 new_mac 变量。
下面写的 get_arguments() 函数,
elif not options.interface:
parser.error("[-] Please specify an interface. Use -- help for more info.")
将被执行,打印文本并使用 parser.error() 停止程序, 如果在命令行上 运行 运行程序时没有指定参数,甚至不要求输入。
但是,这样写,
if options.interface or options.new_mac:
if not options.interface:
parser.error("[-] Please specify an interface. Use -- help for more info.")
if not options.new_mac:
parser.error("[-] Please specify a new MAC address. Use --help for more info.")
else:
return options
程序将停止获取输入,一切正常。
程序如下:
#!/usr/bin/env python
import subprocess
import optparse
def get_arguments():
parser = optparse.OptionParser()
parser.add_option("-i", "--interface", dest="interface", help="Interface to change MAC address")
parser.add_option("-m", "--mac", dest="new_mac", help="New MAC address")
(options, arguments) = parser.parse_args()
if not options.interface and options.new_mac:
options = False
return options
elif not options.interface:
parser.error("[-] Please specify an interface. Use -- help for more info.")
elif not options.new_mac:
parser.error("[-] Please specify a new MAC address. Use --help for more info.")
else:
return options
def change_mac(interface, new_mac):
print("[+] Changing MAC address for '" + interface + "' to '" + new_mac + "'")
subprocess.call(["sudo", "ifconfig", interface, "down"])
subprocess.call(["sudo", "ifconfig", interface, "hw", "ether", new_mac])
subprocess.call(["sudo", "ifconfig", interface, "up"])
subprocess.call(["sudo", "ifconfig", interface])
print("[+] Done!")
options = get_arguments()
if not options:
interface = raw_input("Specify interface > ")
new_mac = raw_input("Specify new MAC address > ")
change_mac(interface, new_mac)
else:
change_mac(options.interface, options.new_mac)
只要在解析后立即检查是否为每个选项都赋予了值,并在此时提示用户输入值。不需要 elif
;单独处理每一个。
另外,不要使用optparse
;请改用 argparse
。
#!/usr/bin/env python
import subprocess
import argparse
def get_arguments():
parser = argparse.ArgumentParser()
parser.add_argument("-i", "--interface", dest="interface", help="Interface to change MAC address")
parser.add_argument("-m", "--mac", dest="new_mac", help="New MAC address")
args = parser.parse_args()
if args.interface is None:
args.interface = raw_input("Specify interface > ")
if args.new_mac is None:
args.new_mac = raw_input("Specify new MAC address > ")
return args
def change_mac(interface, new_mac):
print("[+] Changing MAC address for '" + interface + "' to '" + new_mac + "'")
subprocess.call(["sudo", "ifconfig", interface, "down"])
subprocess.call(["sudo", "ifconfig", interface, "hw", "ether", new_mac])
subprocess.call(["sudo", "ifconfig", interface, "up"])
subprocess.call(["sudo", "ifconfig", interface])
print("[+] Done!")
args = get_arguments()
change_mac(args.interface, args.new_mac)
我也强烈建议,作为初学者,你切换到Python 3.