More stuff.

-Erik
This commit is contained in:
Eric Andersen
1999-10-18 22:28:26 +00:00
parent 703c62da63
commit b0e9a709ba
61 changed files with 168 additions and 233 deletions

View File

@ -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++;