changeset 865:aae54dd82927

Add -f to chmod (just turns off -v).
author Rob Landley <rob@landley.net>
date Wed, 17 Apr 2013 00:15:12 -0500
parents 764df39f62b4
children 0fa773e2a4fe
files toys/posix/chmod.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/toys/posix/chmod.c	Tue Apr 16 23:49:47 2013 -0500
+++ b/toys/posix/chmod.c	Wed Apr 17 00:15:12 2013 -0500
@@ -4,7 +4,7 @@
  *
  * See http://opengroup.org/onlinepubs/9699919799/utilities/chmod.html
 
-USE_CHMOD(NEWTOY(chmod, "<2?vR", TOYFLAG_BIN))
+USE_CHMOD(NEWTOY(chmod, "<2?vRf[-vf]", TOYFLAG_BIN))
 
 config CHMOD
   bool "chmod"