mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-12-21 11:03:29 +01:00
16 lines
311 B
Python
Executable File
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())
|
|
|