-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrepeat.py
57 lines (44 loc) · 1.18 KB
/
repeat.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
'''
Repeat the input as many times as you want.
> repeat "hello" 8
> repeat "yowza" inf
> echo hi | repeat !i 4
'''
import argparse
import sys
from voussoirkit import pipeable
def repeat_inf(text):
try:
while True:
pipeable.stdout(text)
except KeyboardInterrupt:
return 0
def repeat_times(text, times):
try:
times = int(times)
except ValueError:
pipeable.stderr('times should be an integer >= 1.')
return 1
if times < 1:
pipeable.stderr('times should be >= 1.')
return 1
try:
for t in range(times):
pipeable.stdout(text)
except KeyboardInterrupt:
return 1
def repeat_argparse(args):
text = pipeable.input(args.text, split_lines=False)
if args.times == 'inf':
return repeat_inf(text)
else:
return repeat_times(text, args.times)
def main(argv):
parser = argparse.ArgumentParser(description=__doc__)
parser.add_argument('text')
parser.add_argument('times')
parser.set_defaults(func=repeat_argparse)
args = parser.parse_args(argv)
return args.func(args)
if __name__ == '__main__':
raise SystemExit(main(sys.argv[1:]))