Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One-liner solution in Creative category for Unix Match. Part 1 by suic
unix_match = lambda f, p, m=__import__("re").match: bool(m(p.replace(".", "\\.").replace("*", ".*").replace("?", "."), f))
April 24, 2019
Comments: