Skip to content

Instantly share code, notes, and snippets.

@aruthane
aruthane / glob.d
Last active March 27, 2021 08:23
D Programming Language port of https://github.com/zserge/glob-grep
#!/usr/bin/env rdmd
import std.stdio : stderr, File, writefln;
import std.file : dirEntries, SpanMode;
import std.string : indexOf;
void main(string[] args)
{
if (args.length != 2)
{