# ==============================================================================
"""NUMLINES : print a list of text files with line numbering"""
# ==============================================================================
__author__  = "Christophe Schlick modified by Philippe Blasi"
__version__ = "1.0"
__date__    = "2022-11-12"
__usage__   = """
User input : <filename> [filename ...]
App output : content of all provided files with line numbering"""
# ==============================================================================
from ezCLI import *
# ------------------------------------------------------------------------------
def numlines(name:str) -> str:
  """add line numbering to all lines of file 'name'"""
  pass
# ------------------------------------------------------------------------------
def parser(command:str) -> str:
  """parse 'command' and return content of provided files with line numbering"""
  pass
# ==============================================================================
if __name__ == '__main__':
  userloop(parser, "Enter <filename> [filename ...]")
# ==============================================================================
