sbase/ln.c

77 lines
1.3 KiB
C
Raw Normal View History

2011-05-24 12:00:30 +00:00
/* See LICENSE file for copyright and license details. */
2015-02-14 20:02:41 +00:00
#include <sys/stat.h>
#include <fcntl.h>
2014-10-17 15:03:41 +00:00
#include <libgen.h>
#include <unistd.h>
2011-05-24 12:00:30 +00:00
#include "util.h"
2013-06-14 18:20:47 +00:00
static void
usage(void)
{
2015-01-31 14:23:59 +00:00
eprintf("usage: %s [-f] [-L | -P | -s] target [name]\n"
" %s [-f] [-L | -P | -s] target ... directory\n",
argv0, argv0);
2013-06-14 18:20:47 +00:00
}
2011-05-24 12:00:30 +00:00
int
main(int argc, char *argv[])
{
char *fname, *to;
int sflag = 0;
int fflag = 0;
int hasto = 0;
int dirfd = AT_FDCWD;
int flags = AT_SYMLINK_FOLLOW;
struct stat st;
2014-02-17 11:41:37 +00:00
2013-06-14 18:20:47 +00:00
ARGBEGIN {
case 'f':
fflag = 1;
2013-06-14 18:20:47 +00:00
break;
case 's':
sflag = 1;
2013-06-14 18:20:47 +00:00
break;
case 'L':
flags |= AT_SYMLINK_FOLLOW;
break;
case 'P':
flags &= ~AT_SYMLINK_FOLLOW;
break;
2013-06-14 18:20:47 +00:00
default:
usage();
} ARGEND;
if (argc == 0)
2014-10-17 15:03:41 +00:00
usage();
fname = sflag ? "symlink" : "link";
if (argc >= 2) {
if (stat(argv[argc - 1], &st) == 0 && S_ISDIR(st.st_mode)) {
if ((dirfd = open(argv[argc - 1], O_RDONLY)) < 0)
eprintf("open:");
} else if (argc == 2) {
to = argv[1];
hasto = 1;
} else {
eprintf("destination is not a directory\n");
}
argc--;
}
2014-02-17 11:41:37 +00:00
for (; argc > 0; argc--, argv++) {
if (!hasto)
to = basename(argv[0]);
if (fflag)
unlinkat(dirfd, to, 0);
if ((!sflag ? linkat(AT_FDCWD, argv[0], dirfd, to, flags)
: symlinkat(argv[0], dirfd, to)) < 0) {
eprintf("%s %s <- %s:", fname, argv[0], to);
}
}
2013-06-14 18:20:47 +00:00
2014-10-02 22:46:04 +00:00
return 0;
2011-05-24 12:00:30 +00:00
}