More stuff.
[oweals/busybox.git] / mv.c
1 /*
2  * Mini mv implementation for busybox
3  *
4  * Copyright (C) 1998 by Erik Andersen <andersee@debian.org>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19  *
20  */
21
22 #include "internal.h"
23 #include <stdio.h>
24 #include <time.h>
25 #include <utime.h>
26 #include <dirent.h>
27
28
29 static const char mv_usage[] = "mv SOURCE DEST\n"
30 "   or: mv SOURCE... DIRECTORY\n"
31 "Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n";
32
33
34 static const char *srcName;
35 static const char *destName;
36 static const char *skipName;
37 static int dirFlag = FALSE;
38
39
40 extern int mv_main(int argc, char **argv)
41 {
42     char newdestName[NAME_MAX];
43
44     if (argc < 3) {
45         usage (mv_usage);
46     }
47     argc--;
48     argv++;
49
50     destName = argv[argc - 1];
51     dirFlag = isDirectory(destName);
52
53     if ((argc > 3) && dirFlag==FALSE) {
54         fprintf(stderr, "%s: not a directory\n", destName);
55         exit (FALSE);
56     }
57
58     while (argc-- > 1) {
59         srcName = *(argv++);
60         skipName = strrchr(srcName, '/');
61         if (skipName) 
62             skipName++;
63         strcpy(newdestName, destName);
64         if (dirFlag==TRUE) {
65             strcat(newdestName, "/");
66             if ( skipName != NULL)
67                 strcat(newdestName, strstr(srcName, skipName));
68         }
69         if (copyFile(srcName, newdestName, FALSE, FALSE)  == FALSE) {
70             exit( FALSE);
71         }
72         if (unlink (srcName) < 0) {
73             perror (srcName);
74             exit( FALSE);
75         }
76     }
77     exit( TRUE);
78 }