如何在 bash 脚本中解压 python 字典

如何在 bash 脚本中解压 python 字典

我的 python 脚本将字典返回给 bash 脚本,如下所示:

dictionary=$(/path/to/my-script.py --my-profiles setenv)
my-script.py

def main():
    parser = argparse.ArgumentParser(description='My script')
    parser.add_argument('--my-profiles', dest="profiles", 
                        type=str,
                        default='')
    parsed_args = parser.parse_args()
    if args.profiles == "setenv":
        print({'SOME_ENV': '1', 'SOME_OTHER_ENV': '0'})

dictionary在 bash 中的变量有字典。我想解压这本字典并访问每个项目的键和值。

相关内容