9
1
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-08-17 06:51:43 +02:00
qp2/bin/zcat

16 lines
311 B
Plaintext
Raw Normal View History

2023-04-18 11:20:51 +02:00
#!/usr/bin/env python3
import sys
import gzip
# Check if a file path has been provided
if len(sys.argv) < 2:
print("Usage: zcat <filename>")
sys.exit(1)
# Open the gzip file
with gzip.open(sys.argv[1], "rt") as f:
# Read the contents of the file and print to standard output
print(f.read())