diff options
author | Eric Andersen | 1999-10-18 22:28:26 +0000 |
---|---|---|
committer | Eric Andersen | 1999-10-18 22:28:26 +0000 |
commit | b0e9a709ba1ae1724d413a77f5b67b1a3e6c6cb7 (patch) | |
tree | b951f34000ebdef0491eecd9386e5ea3e535171a /coreutils/rm.c | |
parent | 703c62da63aa31d665a8215f373b26e4b54f1bf4 (diff) | |
download | busybox-b0e9a709ba1ae1724d413a77f5b67b1a3e6c6cb7.zip busybox-b0e9a709ba1ae1724d413a77f5b67b1a3e6c6cb7.tar.gz |
More stuff.
-Erik
Diffstat (limited to 'coreutils/rm.c')
-rw-r--r-- | coreutils/rm.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/coreutils/rm.c b/coreutils/rm.c index 477d3af..dd8dfa4 100644 --- a/coreutils/rm.c +++ b/coreutils/rm.c @@ -25,7 +25,7 @@ #include <utime.h> #include <dirent.h> -static const char* rm_usage = "Usage: rm [OPTION]... FILE...\n" +static const char* rm_usage = "rm [OPTION]... FILE...\n" "Remove (unlink) the FILE(s).\n\n" "\t-f\tremove existing destinations, never prompt\n" "\t-r\tremove the contents of directories recursively\n"; @@ -58,8 +58,7 @@ extern int rm_main(int argc, char **argv) { if (argc < 2) { - fprintf(stderr, "Usage: %s", rm_usage); - exit (FALSE); + usage( rm_usage); } argc--; argv++; @@ -75,8 +74,7 @@ extern int rm_main(int argc, char **argv) forceFlag = TRUE; break; default: - fprintf(stderr, "Usage: %s\n", rm_usage); - exit(FALSE); + usage( rm_usage); } argc--; argv++; |