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
|
|
|
*
|
2006-05-20 00:59:19 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
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 */
|
|
|
|
|
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
|
|
|
}
|