sbase/ln.c

50 lines
752 B
C
Raw Normal View History

2011-05-24 08:00:30 -04:00
/* See LICENSE file for copyright and license details. */
2011-06-03 21:56:18 -04:00
#include <errno.h>
2011-05-24 08:00:30 -04:00
#include <stdbool.h>
2011-06-03 21:56:18 -04:00
#include <stdio.h>
2011-05-24 08:00:30 -04:00
#include <stdlib.h>
#include <unistd.h>
#include "util.h"
2011-06-03 21:56:18 -04:00
static int ln(const char *, const char *);
static bool sflag = false;
static bool fflag = false;
2013-06-14 14:20:47 -04:00
static void
usage(void)
{
eprintf("usage: %s [-fs] target linkname\n", argv0);
}
2011-05-24 08:00:30 -04:00
int
main(int argc, char *argv[])
{
2013-06-14 14:20:47 -04:00
ARGBEGIN {
case 'f':
fflag = true;
break;
case 's':
sflag = true;
break;
default:
usage();
} ARGEND;
enmasse(argc, &argv[0], ln);
return EXIT_SUCCESS;
2011-05-24 08:00:30 -04:00
}
2011-06-03 21:56:18 -04:00
int
ln(const char *s1, const char *s2)
{
2011-06-22 18:45:03 -04:00
int (*flink)(const char *, const char *) = sflag ? symlink : link;
2014-02-14 06:23:07 -05:00
if (fflag)
2014-02-14 06:47:34 -05:00
remove(s2);
2011-06-22 18:45:03 -04:00
if(flink(s1, s2) == 0)
return 0;
return -1;
2011-06-03 21:56:18 -04:00
}