scripts/100-get-vpc.py [30:44]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
print(cmd)



#out = subprocess.run('aws configure get region', shell=True, capture_output=True)
#region=out.stdout.decode().rstrip()
#print(region)

out = subprocess.run(cmd, shell=True, capture_output=True)
ol=len(out.stdout.decode().rstrip())
if ol==0:
    print("No return from command exit ...")
    exit()
print("ol="+str(ol))
print(out.stdout.decode().rstrip())
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



scripts/100-get-vpc.py [71:78]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        print(cmd)
        out = subprocess.run(cmd, shell=True, capture_output=True)
        ol=len(out.stdout.decode().rstrip())
        if ol==0:
            print("No return from command exit ...")
            exit()
        print("ol="+str(ol))
        print(out.stdout.decode().rstrip())
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



