mirror of
https://github.com/gnuton/asuswrt-merlin.ng.git
synced 2025-05-19 16:02:36 +02:00
14 lines
354 B
Python
Executable file
14 lines
354 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
# Exit with 1 if any input is provided. Print the input to stdout, unless an
|
|
# argument is specified. In that case, print the argument instead.
|
|
|
|
import sys
|
|
|
|
input_string = sys.stdin.read()
|
|
if input_string != "":
|
|
if len(sys.argv) >= 2:
|
|
print(sys.argv[1])
|
|
else:
|
|
sys.stdout.write(input_string)
|
|
sys.exit(1)
|