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