Building a Technology Company (hasgeek): outsource vs open source
jace.zaiki.in5 pointsby btbytes1 comments
#!/usr/bin/env dub
/+ dub.sdl:
name "allthepythons"
dependency "d-glob" version="~>0.3.0"
+/
import std.stdio : stdout;
import glob : glob;
void main () {
foreach (entry ; glob("/usr/local/bin/python*")) {
stdout.writefln("%s", entry);
}
}
[1] https://www.jsoftware.com/