2020-12-08 04:31:17 +00:00
|
|
|
import argparse
|
2019-06-12 05:41:31 +00:00
|
|
|
import sys
|
|
|
|
|
2020-12-08 04:31:17 +00:00
|
|
|
from voussoirkit import pipeable
|
2019-06-12 05:41:31 +00:00
|
|
|
|
2020-12-08 04:31:17 +00:00
|
|
|
def linenumbers_argparse(args):
|
|
|
|
lines = pipeable.input(args.source, read_files=True)
|
|
|
|
if args.lazy:
|
|
|
|
form = '{no} | {line}'
|
|
|
|
else:
|
|
|
|
lines = list(lines)
|
|
|
|
digits = len(str(len(lines)))
|
|
|
|
form = '{no:>0%d} | {line}' % digits
|
|
|
|
for (index, line) in enumerate(lines):
|
|
|
|
print(form.format(no=index+1, line=line))
|
|
|
|
|
|
|
|
def main(argv):
|
|
|
|
parser = argparse.ArgumentParser(description=__doc__)
|
|
|
|
|
|
|
|
parser.add_argument('source')
|
2021-02-21 05:01:55 +00:00
|
|
|
parser.add_argument('--lazy', action='store_true')
|
2020-12-08 04:31:17 +00:00
|
|
|
parser.set_defaults(func=linenumbers_argparse)
|
|
|
|
|
|
|
|
args = parser.parse_args(argv)
|
|
|
|
return args.func(args)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
raise SystemExit(main(sys.argv[1:]))
|