Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/rm.c')
-rw-r--r--coreutils/rm.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/coreutils/rm.c b/coreutils/rm.c
new file mode 100644
index 000000000..dc35b0297
--- /dev/null
+++ b/coreutils/rm.c
@@ -0,0 +1,30 @@
+#include "internal.h"
+#include <errno.h>
+
+const char rm_usage[] = "rm [-r] file [file ...]\n"
+"\n"
+"\tDelete files.\n"
+"\n"
+"\t-r:\tRecursively remove files and directories.\n";
+
+extern int
+rm_main(struct FileInfo * i, int argc, char * * argv)
+{
+ i->processDirectoriesAfterTheirContents = 1;
+ return monadic_main(i, argc, argv);
+}
+
+extern int
+rm_fn(const struct FileInfo * i)
+{
+ if ( i->recursive
+ && !i->isSymbolicLink
+ && (i->stat.st_mode & S_IFMT) == S_IFDIR )
+ return rmdir_fn(i);
+ else if ( unlink(i->source) != 0 && errno != ENOENT && !i->force ) {
+ name_and_error(i->source);
+ return 1;
+ }
+ else
+ return 0;
+}