2013-10-07 16:03:26 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2013-06-09 13:20:55 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <grp.h>
|
2013-10-07 23:45:25 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2014-11-13 18:54:28 +00:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
2014-11-13 17:29:30 +00:00
|
|
|
|
2013-06-09 13:20:55 +00:00
|
|
|
#include "util.h"
|
|
|
|
|
2013-10-07 15:12:09 +00:00
|
|
|
static int gid;
|
2014-11-22 11:13:53 +00:00
|
|
|
static int status;
|
|
|
|
static int rflag;
|
2013-10-07 23:45:25 +00:00
|
|
|
static struct stat st;
|
2013-06-09 13:20:55 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
|
|
|
eprintf("usage: chgrp [-R] groupname file...\n");
|
|
|
|
}
|
|
|
|
|
2013-10-07 23:45:25 +00:00
|
|
|
static void
|
|
|
|
chgrp(const char *path)
|
2013-06-09 13:20:55 +00:00
|
|
|
{
|
2014-11-19 19:59:37 +00:00
|
|
|
if (chown(path, st.st_uid, gid) < 0) {
|
2014-11-17 16:27:12 +00:00
|
|
|
weprintf("chown %s:", path);
|
2014-11-22 11:13:53 +00:00
|
|
|
status = 1;
|
2013-06-09 13:20:55 +00:00
|
|
|
}
|
2013-10-07 23:45:25 +00:00
|
|
|
if (rflag)
|
|
|
|
recurse(path, chgrp);
|
2013-06-09 13:20:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2014-04-18 10:51:18 +00:00
|
|
|
main(int argc, char *argv[])
|
2013-06-09 13:20:55 +00:00
|
|
|
{
|
|
|
|
struct group *gr;
|
|
|
|
|
|
|
|
ARGBEGIN {
|
|
|
|
case 'R':
|
|
|
|
rflag = 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
} ARGEND;
|
2013-10-07 23:45:25 +00:00
|
|
|
|
2014-11-13 17:29:30 +00:00
|
|
|
if (argc < 2)
|
2013-06-09 13:20:55 +00:00
|
|
|
usage();
|
|
|
|
|
2013-10-07 23:45:25 +00:00
|
|
|
errno = 0;
|
2013-06-09 13:20:55 +00:00
|
|
|
gr = getgrnam(argv[0]);
|
2014-12-21 12:12:38 +00:00
|
|
|
if (!gr) {
|
|
|
|
if (errno)
|
|
|
|
eprintf("getgrnam %s:", argv[0]);
|
|
|
|
else
|
|
|
|
eprintf("getgrnam %s: no such group\n", argv[0]);
|
|
|
|
}
|
2013-06-09 13:20:55 +00:00
|
|
|
gid = gr->gr_gid;
|
|
|
|
|
2014-11-13 17:29:30 +00:00
|
|
|
while (*++argv) {
|
2014-11-19 19:59:37 +00:00
|
|
|
if (stat(*argv, &st) < 0) {
|
2014-11-17 16:27:12 +00:00
|
|
|
weprintf("stat %s:", *argv);
|
2014-11-22 11:13:53 +00:00
|
|
|
status = 1;
|
2013-06-09 13:20:55 +00:00
|
|
|
continue;
|
|
|
|
}
|
2013-10-07 23:45:25 +00:00
|
|
|
chgrp(*argv);
|
2013-06-09 13:20:55 +00:00
|
|
|
}
|
2014-11-22 11:13:53 +00:00
|
|
|
return status;
|
2013-06-09 13:20:55 +00:00
|
|
|
}
|