Lots of updates. Finished implementing BB_FEATURE_TRIVIAL_HELP
[oweals/busybox.git] / coreutils / rm.c
index 0cd795661a0bc31df6aa65544f846d59160f0585..c62d68abad0f53a102544b95cbe828fa9172dc37 100644 (file)
 #include <dirent.h>
 #include <errno.h>
 
-static const char *rm_usage = "rm [OPTION]... FILE...\n\n"
-       "Remove (unlink) the FILE(s).\n\n"
+static const char *rm_usage = "rm [OPTION]... FILE...\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+       "\nRemove (unlink) the FILE(s).\n\n"
        "Options:\n"
-
        "\t-f\t\tremove existing destinations, never prompt\n"
-       "\t-r or -R\tremove the contents of directories recursively\n";
+       "\t-r or -R\tremove the contents of directories recursively\n"
+#endif
+       ;
 
 
 static int recursiveFlag = FALSE;