sbase/chgrp.c

74 lines
1.1 KiB
C
Raw Normal View History

/* See LICENSE file for copyright and license details. */
2015-02-14 15:02:41 -05:00
#include <sys/stat.h>
2013-06-09 09:20:55 -04:00
#include <errno.h>
#include <grp.h>
#include <unistd.h>
2013-06-09 09:20:55 -04:00
#include "util.h"
2013-10-07 11:12:09 -04:00
static int gid;
static int status;
static int rflag;
static struct stat st;
2015-02-12 15:56:06 -05:00
static char *chown_f_name = "chown";
static int (*chown_f)(const char *, uid_t, gid_t) = chown;
2013-06-09 09:20:55 -04:00
static void
chgrp(const char *path)
2013-06-09 09:20:55 -04:00
{
2015-02-12 15:56:06 -05:00
if (chown_f(path, st.st_uid, gid) < 0) {
weprintf("%s %s:", chown_f_name, path);
status = 1;
2013-06-09 09:20:55 -04:00
}
if (rflag)
recurse(path, chgrp);
2013-06-09 09:20:55 -04:00
}
2015-02-12 15:56:06 -05:00
static void
usage(void)
{
eprintf("usage: chgrp [-hR] groupname file...\n");
}
2013-06-09 09:20:55 -04:00
int
2014-04-18 06:51:18 -04:00
main(int argc, char *argv[])
2013-06-09 09:20:55 -04:00
{
struct group *gr;
ARGBEGIN {
2015-02-12 15:56:06 -05:00
case 'h':
chown_f_name = "lchown";
chown_f = lchown;
break;
2013-06-09 09:20:55 -04:00
case 'R':
rflag = 1;
break;
default:
usage();
} ARGEND;
if (argc < 2)
2013-06-09 09:20:55 -04:00
usage();
errno = 0;
2013-06-09 09:20:55 -04:00
gr = getgrnam(argv[0]);
if (!gr) {
if (errno)
eprintf("getgrnam %s:", argv[0]);
else
eprintf("getgrnam %s: no such group\n", argv[0]);
}
2013-06-09 09:20:55 -04:00
gid = gr->gr_gid;
while (*++argv) {
2014-11-19 14:59:37 -05:00
if (stat(*argv, &st) < 0) {
weprintf("stat %s:", *argv);
status = 1;
2013-06-09 09:20:55 -04:00
continue;
}
chgrp(*argv);
2013-06-09 09:20:55 -04:00
}
return status;
2013-06-09 09:20:55 -04:00
}