Protocol Buffers - Google's data interchange format (grpc依赖) https://developers.google.com/protocol-buffers/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
262 B

#!/usr/bin/env python3
import sys
if len(sys.argv) < 2:
print("Must pass a filename argument")
sys.exit(1)
in_file = sys.argv[1]
out_file = in_file.replace(".in.md", ".md")
if in_file == out_file:
print("File must end in .in.md")
sys.exit(1)