2001-04-25 02:07:19 +08:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
2001-10-24 13:00:29 +08:00
|
|
|
* Mini chgrp implementation for busybox
|
2001-04-25 02:07:19 +08:00
|
|
|
*
|
2004-03-15 16:29:22 +08:00
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
2001-04-25 02:07:19 +08:00
|
|
|
*
|
2010-08-17 02:14:46 +08:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2001-04-25 02:07:19 +08:00
|
|
|
*/
|
|
|
|
|
2007-03-09 18:08:53 +08:00
|
|
|
/* BB_AUDIT SUSv3 defects - none? */
|
2006-10-28 07:28:38 +08:00
|
|
|
/* BB_AUDIT GNU defects - unsupported long options. */
|
2003-03-19 17:13:01 +08:00
|
|
|
/* http://www.opengroup.org/onlinepubs/007904975/utilities/chgrp.html */
|
|
|
|
|
2007-05-27 03:00:18 +08:00
|
|
|
#include "libbb.h"
|
2001-04-25 02:07:19 +08:00
|
|
|
|
2007-04-10 23:43:37 +08:00
|
|
|
/* This is a NOEXEC applet. Be very careful! */
|
|
|
|
|
|
|
|
|
2007-10-11 18:05:36 +08:00
|
|
|
int chgrp_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2001-04-25 02:07:19 +08:00
|
|
|
int chgrp_main(int argc, char **argv)
|
|
|
|
{
|
2006-10-28 07:28:38 +08:00
|
|
|
/* "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-25 02:07:19 +08:00
|
|
|
}
|
2006-10-28 07:28:38 +08:00
|
|
|
}
|
|
|
|
return chown_main(argc, argv);
|
2001-04-25 02:07:19 +08:00
|
|
|
}
|