From 1fede547092c5302a27d5c668a47335b36fcdf53 Mon Sep 17 00:00:00 2001 From: andersen Date: Fri, 19 Nov 1999 02:38:58 +0000 Subject: Stuf git-svn-id: svn://busybox.net/trunk/busybox@108 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- rm.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'rm.c') diff --git a/rm.c b/rm.c index ba5d30e92..ee434fb39 100644 --- a/rm.c +++ b/rm.c @@ -31,8 +31,8 @@ static const char* rm_usage = "rm [OPTION]... FILE...\n\n" "Remove (unlink) the FILE(s).\n\n" "Options:\n" -"\t-f\tremove existing destinations, never prompt\n" -"\t-r\tremove the contents of directories recursively\n"; +"\t-f\t\tremove existing destinations, never prompt\n" +"\t-r or -R\tremove the contents of directories recursively\n"; static int recursiveFlag = FALSE; @@ -72,6 +72,7 @@ extern int rm_main(int argc, char **argv) while (**argv == '-') { while (*++(*argv)) switch (**argv) { + case 'R': case 'r': recursiveFlag = TRUE; break; -- cgit v1.2.3-55-g6feb