我有一个脚本,在其中创建了一个从配置文件读取的函数。
def file_reader():
config_dict = {}
configParser = configparser.ConfigParser()
configParser.read('config.ini')
for section_name in configParser.sections():
print('Sections:', section_name)
print(' Options:', configParser.options(section_name))
#for (each_key, each_value) in configParser.items(section_name):
#config_dict[each_key] = each_value
config_dict = dict(configParser.items(section_name))
print(config_dict)
return config_dict
我得到的输出如下:
Sections: my-config
Options: ['path1', 'path2', 'path3']
{'path1': '"/home/asad.javed/stop-services.sh"', 'path2': '"/home/asad.javed/script.py"', 'path3': '"/home/asad.javed/getbps.sh ens6f0"'}
我的配置文件如下所示:
cat config.ini
[my-config]
path1 = "/home/asad.javed/stop-services.sh"
path2 = "/home/asad.javed/script.py"
path3 = "/home/asad.javed/getbps.sh ens6f0"
我的配置文件包含需要作为外部程序运行的路径。我怎样才能只使用键、迭代它们并在子进程中使用它来按顺序运行外部程序?
答案1
对于给定的字典d
,其值分配给一系列要运行的命令:
import os
d = {}
exitcodes = []
d['path1'] = '/bin/true'
d['path2'] = '/bin/false'
for c in d.values():
exitcodes.append( os.system(c) )