mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-07 23:27:01 +02:00
10 lines
216 B
Python
10 lines
216 B
Python
import os
|
|
import sys
|
|
|
|
filename = sys.argv[1]
|
|
with open(filename) as f:
|
|
content = f.readlines()
|
|
for l in content:
|
|
name = l.split()[0]
|
|
print(name)
|
|
os.system("go get " + name + "@latest") |