aboutsummaryrefslogtreecommitdiff
path: root/coreutils/mv.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-10-18 19:02:32 +0000
committerEric Andersen <andersen@codepoet.org>1999-10-18 19:02:32 +0000
commitbed30e97005aca748a44806399c646633038daa8 (patch)
treecdba32234f059656b0279b324ae28c742692cd0c /coreutils/mv.c
parent9b5871888989b16f94cbba5dd304ac444def3afd (diff)
downloadbusybox-bed30e97005aca748a44806399c646633038daa8.tar.gz
More fixes
Diffstat (limited to 'coreutils/mv.c')
-rw-r--r--coreutils/mv.c76
1 files changed, 36 insertions, 40 deletions
diff --git a/coreutils/mv.c b/coreutils/mv.c
index 10a082210..2a7c8c1f3 100644
--- a/coreutils/mv.c
+++ b/coreutils/mv.c
@@ -21,63 +21,59 @@
#include "internal.h"
#include <stdio.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <fcntl.h>
+#include <time.h>
#include <utime.h>
-#include <errno.h>
+#include <dirent.h>
-const char mv_usage[] = "source-file [source-file ...] destination-file\n"
- "\n" "\tMove the source files to the destination.\n" "\n";
+static const char mv_usage[] = "mv SOURCE DEST\n"
+" or: mv SOURCE... DIRECTORY\n"
+"Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n";
-extern int mv_main (int argc, char **argv)
+static const char *srcName;
+static const char *destName;
+static const char *skipName;
+static int dirFlag = FALSE;
+
+
+extern int mv_main(int argc, char **argv)
{
- const char *srcName;
- const char *destName;
- const char *lastArg;
- int dirFlag;
+ char newdestName[NAME_MAX];
if (argc < 3) {
- fprintf (stderr, "Usage: %s %s", *argv, mv_usage);
+ fprintf(stderr, "Usage: %s", mv_usage);
exit (FALSE);
}
- lastArg = argv[argc - 1];
+ argc--;
+ argv++;
- dirFlag = isDirectory (lastArg);
+ destName = argv[argc - 1];
+ dirFlag = isDirectory(destName);
- if ((argc > 3) && !dirFlag) {
- fprintf (stderr, "%s: not a directory\n", lastArg);
+ if ((argc > 3) && dirFlag==FALSE) {
+ fprintf(stderr, "%s: not a directory\n", destName);
exit (FALSE);
}
- while (argc-- > 2) {
- srcName = *(++argv);
-
- if (access (srcName, 0) < 0) {
- perror (srcName);
- continue;
+ while (argc-- > 1) {
+ srcName = *(argv++);
+ skipName = strrchr(srcName, '/');
+ if (skipName)
+ skipName++;
+ strcpy(newdestName, destName);
+ if (dirFlag==TRUE) {
+ strcat(newdestName, "/");
+ if ( skipName != NULL)
+ strcat(newdestName, strstr(srcName, skipName));
}
-
- destName = lastArg;
-
- if (dirFlag==TRUE)
- destName = buildName (destName, srcName);
-
- if (rename (srcName, destName) >= 0)
- continue;
-
- if (errno != EXDEV) {
- perror (destName);
- continue;
+ if (copyFile(srcName, newdestName, FALSE, FALSE) == FALSE) {
+ exit( FALSE);
}
-
- if (!copyFile (srcName, destName, TRUE, FALSE))
- continue;
-
- if (unlink (srcName) < 0)
+ if (unlink (srcName) < 0) {
perror (srcName);
+ exit( FALSE);
+ }
}
- exit (TRUE);
+ exit( TRUE);
}