2001-04-24 23:37:19 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
2001-10-24 10:30:29 +05:30
|
|
|
* Mini chgrp implementation for busybox
|
2001-04-24 23:37:19 +05:30
|
|
|
*
|
2004-03-15 13:59:22 +05:30
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
2001-04-24 23:37:19 +05:30
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2001-04-24 23:37:19 +05:30
|
|
|
*/
|
2016-11-23 19:16:56 +05:30
|
|
|
//config:config CHGRP
|
2017-07-19 01:31:24 +05:30
|
|
|
//config: bool "chgrp (7.2 kb)"
|
2016-11-23 19:16:56 +05:30
|
|
|
//config: default y
|
|
|
|
//config: help
|
2017-07-21 13:20:55 +05:30
|
|
|
//config: chgrp is used to change the group ownership of files.
|
2016-11-23 19:16:56 +05:30
|
|
|
|
|
|
|
//applet:IF_CHGRP(APPLET_NOEXEC(chgrp, chgrp, BB_DIR_BIN, BB_SUID_DROP, chgrp))
|
|
|
|
|
|
|
|
//kbuild:lib-$(CONFIG_CHGRP) += chgrp.o chown.o
|
2001-04-24 23:37:19 +05:30
|
|
|
|
2007-03-09 15:38:53 +05:30
|
|
|
/* BB_AUDIT SUSv3 defects - none? */
|
2006-10-28 04:58:38 +05:30
|
|
|
/* BB_AUDIT GNU defects - unsupported long options. */
|
2003-03-19 14:43:01 +05:30
|
|
|
/* http://www.opengroup.org/onlinepubs/007904975/utilities/chgrp.html */
|
|
|
|
|
2011-03-31 18:13:25 +05:30
|
|
|
//usage:#define chgrp_trivial_usage
|
|
|
|
//usage: "[-RhLHP"IF_DESKTOP("cvf")"]... GROUP FILE..."
|
|
|
|
//usage:#define chgrp_full_usage "\n\n"
|
|
|
|
//usage: "Change the group membership of each FILE to GROUP\n"
|
|
|
|
//usage: "\n -R Recurse"
|
|
|
|
//usage: "\n -h Affect symlinks instead of symlink targets"
|
|
|
|
//usage: "\n -L Traverse all symlinks to directories"
|
|
|
|
//usage: "\n -H Traverse symlinks on command line only"
|
|
|
|
//usage: "\n -P Don't traverse symlinks (default)"
|
|
|
|
//usage: IF_DESKTOP(
|
|
|
|
//usage: "\n -c List changed files"
|
|
|
|
//usage: "\n -v Verbose"
|
|
|
|
//usage: "\n -f Hide errors"
|
|
|
|
//usage: )
|
|
|
|
//usage:
|
|
|
|
//usage:#define chgrp_example_usage
|
|
|
|
//usage: "$ ls -l /tmp/foo\n"
|
|
|
|
//usage: "-r--r--r-- 1 andersen andersen 0 Apr 12 18:25 /tmp/foo\n"
|
|
|
|
//usage: "$ chgrp root /tmp/foo\n"
|
|
|
|
//usage: "$ ls -l /tmp/foo\n"
|
|
|
|
//usage: "-r--r--r-- 1 andersen root 0 Apr 12 18:25 /tmp/foo\n"
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2001-04-24 23:37:19 +05:30
|
|
|
|
2007-04-10 21:13:37 +05:30
|
|
|
/* This is a NOEXEC applet. Be very careful! */
|
|
|
|
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int chgrp_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2001-04-24 23:37:19 +05:30
|
|
|
int chgrp_main(int argc, char **argv)
|
|
|
|
{
|
2006-10-28 04:58:38 +05:30
|
|
|
/* "chgrp [opts] abc file(s)" == "chown [opts] :abc file(s)" */
|
|
|
|
char **p = argv;
|
|
|
|
while (*++p) {
|
|
|
|
if (p[0][0] != '-') {
|
|
|
|
p[0] = xasprintf(":%s", p[0]);
|
|
|
|
break;
|
2001-04-24 23:37:19 +05:30
|
|
|
}
|
2006-10-28 04:58:38 +05:30
|
|
|
}
|
|
|
|
return chown_main(argc, argv);
|
2001-04-24 23:37:19 +05:30
|
|
|
}
|