aboutsummaryrefslogtreecommitdiff
path: root/coreutils/rm.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-03-19 18:52:37 +0000
committerEric Andersen <andersen@codepoet.org>2001-03-19 18:52:37 +0000
commit7c25441792a0685a1eb27c6563ed293e505f5b2c (patch)
tree7f6690b321500b3dbd2b00d347d550937bed5369 /coreutils/rm.c
parentc75586e06d77ff82262e2199ccb5b2863b42caf3 (diff)
downloadbusybox-7c25441792a0685a1eb27c6563ed293e505f5b2c.tar.gz
getopt-ify rm so that BB_FEATURE_RM_INTERACTIVE will work
Diffstat (limited to 'coreutils/rm.c')
-rw-r--r--coreutils/rm.c66
1 files changed, 32 insertions, 34 deletions
diff --git a/coreutils/rm.c b/coreutils/rm.c
index f1152eab3..96808aee8 100644
--- a/coreutils/rm.c
+++ b/coreutils/rm.c
@@ -33,6 +33,7 @@
#include <errno.h>
#include <unistd.h>
#include <stdlib.h>
+#include <getopt.h>
#include "busybox.h"
static int recursiveFlag = FALSE;
@@ -82,52 +83,48 @@ static int dirAction(const char *fileName, struct stat *statbuf, void* junk)
extern int rm_main(int argc, char **argv)
{
+ int opt;
int status = EXIT_SUCCESS;
int stopIt=FALSE;
struct stat statbuf;
-
- argc--;
- argv++;
-
- /* Parse any options */
- while (argc > 0 && stopIt == FALSE) {
- if (**argv == '-') {
- while (*++(*argv))
- switch (**argv) {
- case 'R':
- case 'r':
- recursiveFlag = TRUE;
- break;
- case 'f':
- forceFlag = TRUE;
+
+
+ /* do normal option parsing */
+ while ((opt = getopt(argc, argv, "Rrf-"
#ifdef BB_FEATURE_RM_INTERACTIVE
- interactiveFlag = FALSE;
+"i"
#endif
- break;
- case 'i':
+)) > 0) {
+ switch (opt) {
+ case 'R':
+ case 'r':
+ recursiveFlag = TRUE;
+ break;
+ case 'f':
+ forceFlag = TRUE;
#ifdef BB_FEATURE_RM_INTERACTIVE
- interactiveFlag = TRUE;
+ interactiveFlag = FALSE;
#endif
- break;
- case '-':
- stopIt = TRUE;
- break;
- default:
- show_usage();
- }
- argc--;
- argv++;
+ break;
+ case 'i':
+#ifdef BB_FEATURE_RM_INTERACTIVE
+ interactiveFlag = TRUE;
+#endif
+ break;
+ case '-':
+ stopIt = TRUE;
+ break;
+ default:
+ show_usage();
}
- else
- break;
}
-
- if (argc < 1 && forceFlag == FALSE) {
+
+ if ((argc-optind) < 1 && forceFlag == FALSE) {
show_usage();
}
- while (argc-- > 0) {
- srcName = *(argv++);
+ while (optind < argc) {
+ srcName = argv[optind];
if (forceFlag == TRUE && lstat(srcName, &statbuf) != 0
&& errno == ENOENT) {
/* do not reports errors for non-existent files if -f, just skip them */
@@ -137,6 +134,7 @@ extern int rm_main(int argc, char **argv)
status = EXIT_FAILURE;
}
}
+ optind++;
}
return status;
}