Fixed cp so it works as God intended it to.
-Erik
This commit is contained in:
parent
00266d3df6
commit
2fe08c7afb
2
Makefile
2
Makefile
@ -22,7 +22,7 @@ BUILDTIME=$(shell date "+%Y%m%d-%H%M")
|
|||||||
|
|
||||||
# Comment out the following to make a debuggable build
|
# Comment out the following to make a debuggable build
|
||||||
# Leave this off for production use.
|
# Leave this off for production use.
|
||||||
DODEBUG=false
|
DODEBUG=true
|
||||||
# If you want a static binary, turn this on. I can't think
|
# If you want a static binary, turn this on. I can't think
|
||||||
# of many situations where anybody would ever want it static,
|
# of many situations where anybody would ever want it static,
|
||||||
# but...
|
# but...
|
||||||
|
@ -42,26 +42,36 @@ static int followLinks = FALSE;
|
|||||||
static int preserveFlag = FALSE;
|
static int preserveFlag = FALSE;
|
||||||
static const char *srcName;
|
static const char *srcName;
|
||||||
static const char *destName;
|
static const char *destName;
|
||||||
static const char *skipName;
|
static int destDirFlag = FALSE;
|
||||||
static int dirFlag = FALSE;
|
static int destExistsFlag = FALSE;
|
||||||
|
static int srcDirFlag = FALSE;
|
||||||
|
|
||||||
static int fileAction(const char *fileName, struct stat* statbuf)
|
static int fileAction(const char *fileName, struct stat* statbuf)
|
||||||
{
|
{
|
||||||
char newdestName[NAME_MAX];
|
char newdestName[NAME_MAX];
|
||||||
|
|
||||||
strcpy(newdestName, destName);
|
strcpy(newdestName, destName);
|
||||||
if (dirFlag==TRUE) {
|
if ( srcDirFlag == TRUE ) {
|
||||||
|
if (recursiveFlag!=TRUE ) {
|
||||||
|
fprintf(stderr, "cp: %s: omitting directory\n", srcName);
|
||||||
|
return( TRUE);
|
||||||
|
}
|
||||||
|
strcat(newdestName, strstr(fileName, srcName) + strlen(srcName));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (destDirFlag==TRUE && srcDirFlag == FALSE) {
|
||||||
|
if (newdestName[strlen(newdestName)-1] != '/' ) {
|
||||||
strcat(newdestName, "/");
|
strcat(newdestName, "/");
|
||||||
if ( skipName != NULL)
|
}
|
||||||
strcat(newdestName, strstr(fileName, skipName));
|
|
||||||
else
|
|
||||||
strcat(newdestName, srcName);
|
strcat(newdestName, srcName);
|
||||||
}
|
}
|
||||||
|
|
||||||
return (copyFile(fileName, newdestName, preserveFlag, followLinks));
|
return (copyFile(fileName, newdestName, preserveFlag, followLinks));
|
||||||
}
|
}
|
||||||
|
|
||||||
extern int cp_main(int argc, char **argv)
|
extern int cp_main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
|
struct stat statBuf;
|
||||||
|
|
||||||
if (argc < 3) {
|
if (argc < 3) {
|
||||||
usage (cp_usage);
|
usage (cp_usage);
|
||||||
@ -96,18 +106,20 @@ extern int cp_main(int argc, char **argv)
|
|||||||
|
|
||||||
|
|
||||||
destName = argv[argc - 1];
|
destName = argv[argc - 1];
|
||||||
dirFlag = isDirectory(destName);
|
if (stat(destName, &statBuf) >= 0) {
|
||||||
|
destExistsFlag = TRUE;
|
||||||
|
if (S_ISDIR(statBuf.st_mode))
|
||||||
|
destDirFlag = TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
if ((argc > 3) && dirFlag==FALSE) {
|
if ((argc > 3) && destDirFlag==FALSE) {
|
||||||
fprintf(stderr, "%s: not a directory\n", destName);
|
fprintf(stderr, "%s: not a directory\n", destName);
|
||||||
exit (FALSE);
|
exit (FALSE);
|
||||||
}
|
}
|
||||||
|
|
||||||
while (argc-- > 1) {
|
while (argc-- > 1) {
|
||||||
srcName = *(argv++);
|
srcName = *(argv++);
|
||||||
skipName = strrchr(srcName, '/');
|
srcDirFlag = isDirectory(srcName);
|
||||||
if (skipName)
|
|
||||||
skipName++;
|
|
||||||
if (recursiveAction(srcName, recursiveFlag, followLinks, FALSE,
|
if (recursiveAction(srcName, recursiveFlag, followLinks, FALSE,
|
||||||
fileAction, fileAction) == FALSE) {
|
fileAction, fileAction) == FALSE) {
|
||||||
exit( FALSE);
|
exit( FALSE);
|
||||||
|
@ -35,13 +35,25 @@ static const char mv_usage[] = "mv SOURCE DEST\n"
|
|||||||
|
|
||||||
static const char *srcName;
|
static const char *srcName;
|
||||||
static const char *destName;
|
static const char *destName;
|
||||||
static const char *skipName;
|
|
||||||
static int dirFlag = FALSE;
|
static int dirFlag = FALSE;
|
||||||
|
|
||||||
|
static int fileAction(const char *fileName, struct stat* statbuf)
|
||||||
|
{
|
||||||
|
char newdestName[NAME_MAX];
|
||||||
|
|
||||||
|
fprintf(stderr, "srcName='%s' destName='%s'\n", srcName, destName);
|
||||||
|
strcpy(newdestName, destName);
|
||||||
|
strcat(newdestName, "/");
|
||||||
|
strcat(newdestName, strstr(fileName, fileName));
|
||||||
|
fprintf(stderr, "newdestName='%s'\n", newdestName);
|
||||||
|
return (copyFile(fileName, newdestName, TRUE, TRUE));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
extern int mv_main(int argc, char **argv)
|
extern int mv_main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
char newdestName[NAME_MAX];
|
char newdestName[NAME_MAX];
|
||||||
|
char *skipName;
|
||||||
|
|
||||||
if (argc < 3) {
|
if (argc < 3) {
|
||||||
usage (mv_usage);
|
usage (mv_usage);
|
||||||
@ -69,10 +81,19 @@ extern int mv_main(int argc, char **argv)
|
|||||||
strcat(newdestName, strstr(srcName, skipName));
|
strcat(newdestName, strstr(srcName, skipName));
|
||||||
else
|
else
|
||||||
strcat(newdestName, srcName);
|
strcat(newdestName, srcName);
|
||||||
fprintf(stderr, "srcName='%s'\n", srcName);
|
|
||||||
fprintf(stderr, "skipName='%s'\n", skipName);
|
|
||||||
fprintf(stderr, "newdestName='%s'\n", newdestName);
|
|
||||||
}
|
}
|
||||||
|
if (isDirectory(srcName)==TRUE && newdestName[strlen(newdestName)] != '/') {
|
||||||
|
strcat(newdestName, "/");
|
||||||
|
createPath(newdestName, 0777);
|
||||||
|
fprintf(stderr, "srcName = '%s'\n", srcName);
|
||||||
|
fprintf(stderr, "newdestName = '%s'\n", newdestName);
|
||||||
|
if (recursiveAction(srcName, TRUE, TRUE, FALSE,
|
||||||
|
fileAction, fileAction) == FALSE)
|
||||||
|
{
|
||||||
|
exit( FALSE);
|
||||||
|
}
|
||||||
|
exit( TRUE);
|
||||||
|
} else {
|
||||||
if (copyFile(srcName, newdestName, FALSE, FALSE) == FALSE) {
|
if (copyFile(srcName, newdestName, FALSE, FALSE) == FALSE) {
|
||||||
exit( FALSE);
|
exit( FALSE);
|
||||||
}
|
}
|
||||||
@ -81,5 +102,6 @@ extern int mv_main(int argc, char **argv)
|
|||||||
exit( FALSE);
|
exit( FALSE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
exit( TRUE);
|
exit( TRUE);
|
||||||
}
|
}
|
||||||
|
36
cp.c
36
cp.c
@ -42,26 +42,36 @@ static int followLinks = FALSE;
|
|||||||
static int preserveFlag = FALSE;
|
static int preserveFlag = FALSE;
|
||||||
static const char *srcName;
|
static const char *srcName;
|
||||||
static const char *destName;
|
static const char *destName;
|
||||||
static const char *skipName;
|
static int destDirFlag = FALSE;
|
||||||
static int dirFlag = FALSE;
|
static int destExistsFlag = FALSE;
|
||||||
|
static int srcDirFlag = FALSE;
|
||||||
|
|
||||||
static int fileAction(const char *fileName, struct stat* statbuf)
|
static int fileAction(const char *fileName, struct stat* statbuf)
|
||||||
{
|
{
|
||||||
char newdestName[NAME_MAX];
|
char newdestName[NAME_MAX];
|
||||||
|
|
||||||
strcpy(newdestName, destName);
|
strcpy(newdestName, destName);
|
||||||
if (dirFlag==TRUE) {
|
if ( srcDirFlag == TRUE ) {
|
||||||
|
if (recursiveFlag!=TRUE ) {
|
||||||
|
fprintf(stderr, "cp: %s: omitting directory\n", srcName);
|
||||||
|
return( TRUE);
|
||||||
|
}
|
||||||
|
strcat(newdestName, strstr(fileName, srcName) + strlen(srcName));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (destDirFlag==TRUE && srcDirFlag == FALSE) {
|
||||||
|
if (newdestName[strlen(newdestName)-1] != '/' ) {
|
||||||
strcat(newdestName, "/");
|
strcat(newdestName, "/");
|
||||||
if ( skipName != NULL)
|
}
|
||||||
strcat(newdestName, strstr(fileName, skipName));
|
|
||||||
else
|
|
||||||
strcat(newdestName, srcName);
|
strcat(newdestName, srcName);
|
||||||
}
|
}
|
||||||
|
|
||||||
return (copyFile(fileName, newdestName, preserveFlag, followLinks));
|
return (copyFile(fileName, newdestName, preserveFlag, followLinks));
|
||||||
}
|
}
|
||||||
|
|
||||||
extern int cp_main(int argc, char **argv)
|
extern int cp_main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
|
struct stat statBuf;
|
||||||
|
|
||||||
if (argc < 3) {
|
if (argc < 3) {
|
||||||
usage (cp_usage);
|
usage (cp_usage);
|
||||||
@ -96,18 +106,20 @@ extern int cp_main(int argc, char **argv)
|
|||||||
|
|
||||||
|
|
||||||
destName = argv[argc - 1];
|
destName = argv[argc - 1];
|
||||||
dirFlag = isDirectory(destName);
|
if (stat(destName, &statBuf) >= 0) {
|
||||||
|
destExistsFlag = TRUE;
|
||||||
|
if (S_ISDIR(statBuf.st_mode))
|
||||||
|
destDirFlag = TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
if ((argc > 3) && dirFlag==FALSE) {
|
if ((argc > 3) && destDirFlag==FALSE) {
|
||||||
fprintf(stderr, "%s: not a directory\n", destName);
|
fprintf(stderr, "%s: not a directory\n", destName);
|
||||||
exit (FALSE);
|
exit (FALSE);
|
||||||
}
|
}
|
||||||
|
|
||||||
while (argc-- > 1) {
|
while (argc-- > 1) {
|
||||||
srcName = *(argv++);
|
srcName = *(argv++);
|
||||||
skipName = strrchr(srcName, '/');
|
srcDirFlag = isDirectory(srcName);
|
||||||
if (skipName)
|
|
||||||
skipName++;
|
|
||||||
if (recursiveAction(srcName, recursiveFlag, followLinks, FALSE,
|
if (recursiveAction(srcName, recursiveFlag, followLinks, FALSE,
|
||||||
fileAction, fileAction) == FALSE) {
|
fileAction, fileAction) == FALSE) {
|
||||||
exit( FALSE);
|
exit( FALSE);
|
||||||
|
@ -46,7 +46,7 @@ static const char grep_usage[] =
|
|||||||
"\t-h\tsuppress the prefixing filename on output\n"
|
"\t-h\tsuppress the prefixing filename on output\n"
|
||||||
"\t-i\tignore case distinctions\n"
|
"\t-i\tignore case distinctions\n"
|
||||||
"\t-n\tprint line number with output lines\n"
|
"\t-n\tprint line number with output lines\n"
|
||||||
"\t-q\tbe quiet\n\n"
|
"\t-q\tbe quiet. Returns 0 if result was found, 1 otherwise\n\n"
|
||||||
#if defined BB_REGEXP
|
#if defined BB_REGEXP
|
||||||
"This version of grep matches full regular expresions.\n";
|
"This version of grep matches full regular expresions.\n";
|
||||||
#else
|
#else
|
||||||
|
2
grep.c
2
grep.c
@ -46,7 +46,7 @@ static const char grep_usage[] =
|
|||||||
"\t-h\tsuppress the prefixing filename on output\n"
|
"\t-h\tsuppress the prefixing filename on output\n"
|
||||||
"\t-i\tignore case distinctions\n"
|
"\t-i\tignore case distinctions\n"
|
||||||
"\t-n\tprint line number with output lines\n"
|
"\t-n\tprint line number with output lines\n"
|
||||||
"\t-q\tbe quiet\n\n"
|
"\t-q\tbe quiet. Returns 0 if result was found, 1 otherwise\n\n"
|
||||||
#if defined BB_REGEXP
|
#if defined BB_REGEXP
|
||||||
"This version of grep matches full regular expresions.\n";
|
"This version of grep matches full regular expresions.\n";
|
||||||
#else
|
#else
|
||||||
|
30
mv.c
30
mv.c
@ -35,13 +35,25 @@ static const char mv_usage[] = "mv SOURCE DEST\n"
|
|||||||
|
|
||||||
static const char *srcName;
|
static const char *srcName;
|
||||||
static const char *destName;
|
static const char *destName;
|
||||||
static const char *skipName;
|
|
||||||
static int dirFlag = FALSE;
|
static int dirFlag = FALSE;
|
||||||
|
|
||||||
|
static int fileAction(const char *fileName, struct stat* statbuf)
|
||||||
|
{
|
||||||
|
char newdestName[NAME_MAX];
|
||||||
|
|
||||||
|
fprintf(stderr, "srcName='%s' destName='%s'\n", srcName, destName);
|
||||||
|
strcpy(newdestName, destName);
|
||||||
|
strcat(newdestName, "/");
|
||||||
|
strcat(newdestName, strstr(fileName, fileName));
|
||||||
|
fprintf(stderr, "newdestName='%s'\n", newdestName);
|
||||||
|
return (copyFile(fileName, newdestName, TRUE, TRUE));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
extern int mv_main(int argc, char **argv)
|
extern int mv_main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
char newdestName[NAME_MAX];
|
char newdestName[NAME_MAX];
|
||||||
|
char *skipName;
|
||||||
|
|
||||||
if (argc < 3) {
|
if (argc < 3) {
|
||||||
usage (mv_usage);
|
usage (mv_usage);
|
||||||
@ -69,10 +81,19 @@ extern int mv_main(int argc, char **argv)
|
|||||||
strcat(newdestName, strstr(srcName, skipName));
|
strcat(newdestName, strstr(srcName, skipName));
|
||||||
else
|
else
|
||||||
strcat(newdestName, srcName);
|
strcat(newdestName, srcName);
|
||||||
fprintf(stderr, "srcName='%s'\n", srcName);
|
|
||||||
fprintf(stderr, "skipName='%s'\n", skipName);
|
|
||||||
fprintf(stderr, "newdestName='%s'\n", newdestName);
|
|
||||||
}
|
}
|
||||||
|
if (isDirectory(srcName)==TRUE && newdestName[strlen(newdestName)] != '/') {
|
||||||
|
strcat(newdestName, "/");
|
||||||
|
createPath(newdestName, 0777);
|
||||||
|
fprintf(stderr, "srcName = '%s'\n", srcName);
|
||||||
|
fprintf(stderr, "newdestName = '%s'\n", newdestName);
|
||||||
|
if (recursiveAction(srcName, TRUE, TRUE, FALSE,
|
||||||
|
fileAction, fileAction) == FALSE)
|
||||||
|
{
|
||||||
|
exit( FALSE);
|
||||||
|
}
|
||||||
|
exit( TRUE);
|
||||||
|
} else {
|
||||||
if (copyFile(srcName, newdestName, FALSE, FALSE) == FALSE) {
|
if (copyFile(srcName, newdestName, FALSE, FALSE) == FALSE) {
|
||||||
exit( FALSE);
|
exit( FALSE);
|
||||||
}
|
}
|
||||||
@ -81,5 +102,6 @@ extern int mv_main(int argc, char **argv)
|
|||||||
exit( FALSE);
|
exit( FALSE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
exit( TRUE);
|
exit( TRUE);
|
||||||
}
|
}
|
||||||
|
@ -151,7 +151,8 @@ copyFile( const char *srcName, const char *destName,
|
|||||||
if (S_ISDIR(srcStatBuf.st_mode)) {
|
if (S_ISDIR(srcStatBuf.st_mode)) {
|
||||||
//fprintf(stderr, "copying directory %s to %s\n", srcName, destName);
|
//fprintf(stderr, "copying directory %s to %s\n", srcName, destName);
|
||||||
/* Make sure the directory is writable */
|
/* Make sure the directory is writable */
|
||||||
if (mkdir(destName, 0777777 ^ umask(0))) {
|
result = mkdir(destName, 0777777 ^ umask(0));
|
||||||
|
if (result < 0 && errno != EEXIST) {
|
||||||
perror(destName);
|
perror(destName);
|
||||||
return (FALSE);
|
return (FALSE);
|
||||||
}
|
}
|
||||||
@ -478,7 +479,7 @@ recursiveAction(const char *fileName, int recurse, int followLinks, int depthFir
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
#if defined (BB_TAR) || defined (BB_MKDIR)
|
#if defined (BB_TAR) || defined (BB_MKDIR) || defined (BB_CP)
|
||||||
/*
|
/*
|
||||||
* Attempt to create the directories along the specified path, except for
|
* Attempt to create the directories along the specified path, except for
|
||||||
* the final component. The mode is given for the final directory only,
|
* the final component. The mode is given for the final directory only,
|
||||||
|
Loading…
Reference in New Issue
Block a user