From 2278a4c16b37524e8b2ea2b2682b6943c3d9ba2f Mon Sep 17 00:00:00 2001 From: Andreas Zwinkau Date: Thu, 15 Jan 2015 20:30:02 +0100 Subject: [PATCH] add --help option and usage string --- src/dfmt.d | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/dfmt.d b/src/dfmt.d index f8edd30..f64e181 100644 --- a/src/dfmt.d +++ b/src/dfmt.d @@ -34,13 +34,29 @@ import std.d.formatter; import std.d.ast; import std.array; +immutable USAGE = "usage: %s [--inplace] [...] +Formats D code. + + --inplace change file in-place instead of outputing to stdout + (implicit in case of multiple files) + -h, --help display this help and exit +"; + int main(string[] args) { import std.getopt; bool inplace = false; + bool show_usage = false; getopt(args, + "help|h", &show_usage, "inplace", &inplace); + if (show_usage) + { + import std.path: baseName; + writef(USAGE, baseName(args[0])); + return 0; + } File output = stdout; ubyte[] buffer; args.popFront();