sbase/chgrp.c

71 lines
1.0 KiB
C
Raw Normal View History

/* See LICENSE file for copyright and license details. */
2013-06-09 09:20:55 -04:00
#include <errno.h>
#include <grp.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.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;
2013-06-09 09:20:55 -04:00
static void
usage(void)
{
eprintf("usage: chgrp [-R] groupname file...\n");
}
static void
chgrp(const char *path)
2013-06-09 09:20:55 -04:00
{
2014-11-19 14:59:37 -05:00
if (chown(path, st.st_uid, gid) < 0) {
weprintf("chown %s:", path);
status = 1;
2013-06-09 09:20:55 -04:00
}
if (rflag)
recurse(path, chgrp);
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 {
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
}