sbase/mv.c

53 lines
792 B
C
Raw Normal View History

2012-01-30 22:41:33 +00:00
/* See LICENSE file for copyright and license details. */
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/stat.h>
#include "fs.h"
#include "util.h"
int mv(const char *, const char *);
2013-06-14 18:20:47 +00:00
static void
usage(void)
{
eprintf("usage: %s source... dest\n", argv0);
}
2012-01-30 22:41:33 +00:00
int
main(int argc, char *argv[])
{
struct stat st;
2013-06-14 18:20:47 +00:00
ARGBEGIN {
default:
usage();
} ARGEND;
if (argc < 2)
usage();
2012-01-30 22:41:33 +00:00
if(argc > 3 && !(stat(argv[argc-1], &st) == 0 && S_ISDIR(st.st_mode)))
eprintf("%s: not a directory\n", argv[argc-1]);
2013-06-14 18:20:47 +00:00
enmasse(argc, &argv[0], mv);
return 0;
2012-01-30 22:41:33 +00:00
}
int
2013-06-14 18:20:47 +00:00
mv(const char *s1, const char *s2)
2012-01-30 22:41:33 +00:00
{
if (rename(s1, s2) == 0)
return 0;
2013-06-14 18:20:47 +00:00
if (errno == EXDEV) {
2012-01-30 22:41:33 +00:00
cp_rflag = true;
rm_rflag = true;
cp(s1, s2);
rm(s1);
return 0;
}
return -1;
}
2013-06-14 18:20:47 +00:00