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;
|
|
|
|
|
2011-05-24 08:00:30 -04:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
char c;
|
|
|
|
|
2011-06-03 21:56:18 -04:00
|
|
|
while((c = getopt(argc, argv, "fs")) != -1)
|
2011-05-24 08:00:30 -04:00
|
|
|
switch(c) {
|
2011-06-03 21:56:18 -04:00
|
|
|
case 'f':
|
|
|
|
fflag = true;
|
|
|
|
break;
|
2011-05-24 08:00:30 -04:00
|
|
|
case 's':
|
|
|
|
sflag = true;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2011-06-03 21:56:18 -04:00
|
|
|
enmasse(argc - optind, &argv[optind], ln);
|
2011-05-24 08:00:30 -04:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
2011-06-03 21:56:18 -04:00
|
|
|
|
|
|
|
int
|
|
|
|
ln(const char *s1, const char *s2)
|
|
|
|
{
|
2011-06-04 07:20:41 -04:00
|
|
|
if(fflag && remove(s2) == -1 && errno != ENOENT)
|
2011-06-03 21:56:18 -04:00
|
|
|
eprintf("remove %s:", s2);
|
|
|
|
return (sflag ? symlink : link)(s1, s2);
|
|
|
|
}
|