Update repeat.py, delete forever.py.
forever can be achieved by repeat x inf | do_cmd.
This commit is contained in:
parent
27a8a4c811
commit
27463a1711
2 changed files with 39 additions and 12 deletions
|
@ -1,6 +0,0 @@
|
||||||
import subprocess
|
|
||||||
import sys
|
|
||||||
|
|
||||||
cmd = sys.argv[1:]
|
|
||||||
while True:
|
|
||||||
subprocess.run(cmd, shell=True)
|
|
45
repeat.py
45
repeat.py
|
@ -1,16 +1,49 @@
|
||||||
'''
|
'''
|
||||||
Repeat the input as many times as you want
|
Repeat the input as many times as you want.
|
||||||
|
|
||||||
> repeat "hello" 8
|
> repeat "hello" 8
|
||||||
> echo hi | repeat !i 4
|
> echo hi | repeat !i 4
|
||||||
'''
|
'''
|
||||||
|
import argparse
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
from voussoirkit import clipext
|
from voussoirkit import clipext
|
||||||
|
from voussoirkit import pipeable
|
||||||
|
|
||||||
text = clipext.resolve(sys.argv[1])
|
def repeat_argparse(args):
|
||||||
repeat_times = int(sys.argv[2])
|
text = clipext.resolve(args.text)
|
||||||
|
if args.times == 'inf':
|
||||||
|
try:
|
||||||
|
while True:
|
||||||
|
print(text)
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
return 0
|
||||||
|
else:
|
||||||
|
try:
|
||||||
|
times = int(args.times)
|
||||||
|
except ValueError:
|
||||||
|
pipeable.stderr('times should be an integer >= 1.')
|
||||||
|
return 1
|
||||||
|
|
||||||
for t in range(repeat_times):
|
if times < 1:
|
||||||
print(text)
|
pipeable.stderr('times should be >= 1.')
|
||||||
|
return 1
|
||||||
|
|
||||||
|
try:
|
||||||
|
for t in range(times):
|
||||||
|
print(text)
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
return 1
|
||||||
|
|
||||||
|
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:]))
|
||||||
|
|
Loading…
Reference in a new issue