diff --git a/toys/posix/touch.c b/toys/posix/touch.c index 5e5588b1..6a07ff33 100644 --- a/toys/posix/touch.c +++ b/toys/posix/touch.c @@ -3,8 +3,11 @@ * Copyright 2012 Choubey Ji * * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/touch.html + * + * -f is ignored for BSD/macOS compatibility. busybox/coreutils also support + * this, but only coreutils documents it in --help output. -USE_TOUCH(NEWTOY(touch, "<1acd:mr:t:h[!dtr]", TOYFLAG_BIN)) +USE_TOUCH(NEWTOY(touch, "<1acd:fmr:t:h[!dtr]", TOYFLAG_BIN)) config TOUCH bool "touch"