icarus/src/root_store_gen/print_pb.py
2024-08-09 09:34:40 -04:00

11 lines
239 B
Python

#!/bin/python3
import crs_pb2
import sys
if (len(sys.argv) < 2):
print("Usage: <chrome root store protobuf file>")
exit(-1)
rs = crs_pb2.RootStore()
with open(sys.argv[1], 'rb') as f:
rs.ParseFromString(f.read())
print(rs)