10
0
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-07-05 19:06:05 +02:00
QuantumPackage/bin/zcat
2023-04-18 11:23:20 +02:00

16 lines
311 B
Python
Executable File

#!/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())