blob: 4b7e802569377d45eac8adb69b3d4f23a13fcdff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/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, also print the argument.
import sys
input_string = sys.stdin.read()
if input_string != "":
sys.stdout.write(input_string)
if len(sys.argv) >= 2:
print(sys.argv[1])
sys.exit(1)
|