view bin/whatis @ 12022:dff0129e4a40 draft

<b_jonas> fetch bin/whatis https://hack.esolangs.org/get/bin/whatis
author HackEso <hackeso@esolangs.org>
date Thu, 14 Nov 2019 23:41:32 +0000
parents cc933fc31298
children f79df0b509c8
line wrap: on
line source

#!/usr/bin/python3
import sys, os, re
if len(sys.argv) <= 1:
    print("whatis what?")
    sys.exit(1)
else:
    argorg = []
    argfoldv = []
    foundv = []
    for arg in sys.argv[1:]:
        argorg.append(arg)
        argfoldv.append(arg.casefold())
        foundv.append(False)
    with open(os.environ.get("HACKENV","/hackenv") + /share/whatis", errors="surrogateescape") as whatisdb:
        for line in whatisdb:
            parts = re.match(r"([^()]+)\(([0-9A-Z_a-z]+)\)", line)
            if parts:
                match = False
                for argind, argfold in enumerate(argfoldv):
                    if argfold == parts.group(1).casefold():
                        match = True
                        foundv[argind] = True
                if match:
                    print(line, end="")
        for arg, found in zip(argorg, foundv):
            if not found:
                print(arg + ": nothing appropriate.")