* Dave Boers ([EMAIL PROTECTED]) [000306 13:36]:
> chown: illegal option -- v
> usage: chown [-R [-H | -L | -P]] [-f] [-h] [-v] owner[:group] file ...
> chown [-R [-H | -L | -P]] [-f] [-h] [-v] :group file ...
> chgrp [-R [-H | -L | -P]] [-f] [-h] [-v] group file ...
>
A simple patch:
--- chown.c.1.14 Sat Nov 27 13:25:07 1999
+++ chown.c Mon Mar 6 13:42:41 2000
@@ -86,7 +86,7 @@
ischown = myname[2] == 'o';
Hflag = Lflag = Pflag = hflag = 0;
- while ((ch = getopt(argc, argv, "HLPRfh")) != -1)
+ while ((ch = getopt(argc, argv, "HLPRfhv")) != -1)
switch (ch) {
case 'H':
Hflag = 1;
@@ -108,6 +108,9 @@
break;
case 'h':
hflag = 1;
+ break;
+ case 'v':
+ vflag = 1;
break;
case '?':
default:
Regards,
--
Arindum
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message