about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-09-26 11:07:50 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-09-26 11:07:50 -0700
commitac397f2ec45a9fd0b4ac579c4dc027bdb37fa47b (patch)
tree00ce85da081168d6cb01c6cf3f9077f43e78cb0d
parent7cb80544ba62f45b0ec566112e63dbbbbea36b77 (diff)
downloadmu-ac397f2ec45a9fd0b4ac579c4dc027bdb37fa47b.tar.gz
2208
-rw-r--r--001help.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/001help.cc b/001help.cc
index 0f1e32aa..0625639d 100644
--- a/001help.cc
+++ b/001help.cc
@@ -11,6 +11,11 @@ if (argc <= 1 || is_equal(argv[1], "--help")) {
        << "  mu test\n"
        << "To load files and then run all tests:\n"
        << "  mu test file1.mu file2.mu ...\n"
+       << "To load all files with a numeric prefix in a directory:\n"
+       << "  mu directory1\n"
+       << "You can test directories just like files.\n"
+       << "To pass ingredients to a mu program, provide them after '--':\n"
+       << "  mu file_or_dir1 file_or_dir2 ... -- ingredient1 ingredient2 ...\n"
        ;
   return 0;
 }