about summary refs log tree commit diff stats
path: root/001help.cc
diff options
context:
space:
mode:
Diffstat (limited to '001help.cc')
-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;
 }