From ec3d09000b21f86e373575be21bd111007ba5726 Mon Sep 17 00:00:00 2001 From: Robert Knight Date: Mon, 2 Sep 2013 10:28:29 +0100 Subject: [PATCH] Add usage info to zip-tool utility MD-19678 #time 5m --- src/zip-tool.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/zip-tool.cpp b/src/zip-tool.cpp index 0da5728..840729a 100644 --- a/src/zip-tool.cpp +++ b/src/zip-tool.cpp @@ -39,6 +39,9 @@ int main(int argc, char** argv) { if (argc < 3) { + std::cerr << "Usage: " << argv[0] << " " << std::endl << std::endl + << "Recursively scan and add all files found to the ZIP archive " + << std::endl; return 1; }