implemented numeric sort (sort -g)
[oweals/busybox.git] / cp.c
1 /*
2  * Mini cp 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 static const char cp_usage[] = "cp [OPTION]... SOURCE DEST\n"
31     "   or: cp [OPTION]... SOURCE... DIRECTORY\n\n"
32     "Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n"
33     "\n"
34     "\t-a\tsame as -dpR\n"
35     "\t-d\tpreserve links\n"
36     "\t-p\tpreserve file attributes if possable\n"
37     "\t-R\tcopy directories recursively\n";
38
39
40 static int recursiveFlag = FALSE;
41 static int followLinks = FALSE;
42 static int preserveFlag = FALSE;
43 static const char *srcName;
44 static const char *destName;
45 static const char *skipName;
46 static int dirFlag = FALSE;
47
48
49 static int fileAction(const char *fileName, struct stat* statbuf)
50 {
51     char newdestName[NAME_MAX];
52     strcpy(newdestName, destName);
53     if (dirFlag==TRUE) {
54         strcat(newdestName, "/");
55         if ( skipName != NULL)
56             strcat(newdestName, strstr(fileName, skipName));
57         else
58             strcat(newdestName, srcName);
59     }
60     return (copyFile(fileName, newdestName, preserveFlag, followLinks));
61 }
62
63 extern int cp_main(int argc, char **argv)
64 {
65
66     if (argc < 3) {
67         usage (cp_usage);
68     }
69     argc--;
70     argv++;
71
72     /* Parse any options */
73     while (**argv == '-') {
74         while (*++(*argv))
75             switch (**argv) {
76             case 'a':
77                 followLinks = TRUE;
78                 preserveFlag = TRUE;
79                 recursiveFlag = TRUE;
80                 break;
81             case 'd':
82                 followLinks = TRUE;
83                 break;
84             case 'p':
85                 preserveFlag = TRUE;
86                 break;
87             case 'R':
88                 recursiveFlag = TRUE;
89                 break;
90             default:
91                 usage (cp_usage);
92             }
93         argc--;
94         argv++;
95     }
96
97
98     destName = argv[argc - 1];
99     dirFlag = isDirectory(destName);
100
101     if ((argc > 3) && dirFlag==FALSE) {
102         fprintf(stderr, "%s: not a directory\n", destName);
103         exit (FALSE);
104     }
105
106     while (argc-- > 1) {
107         srcName = *(argv++);
108         skipName = strrchr(srcName, '/');
109         if (skipName) 
110             skipName++;
111         if (recursiveAction(srcName, recursiveFlag, followLinks, FALSE,
112                                fileAction, fileAction) == FALSE) {
113             exit( FALSE);
114         }
115     }
116     exit( TRUE);
117 }