From: Sergey Matveev Date: Tue, 31 May 2022 13:33:20 +0000 (+0300) Subject: Тривиальная оптимизация find+chmod X-Git-Url: http://www.git.cypherpunks.ru/?p=gost-www.git;a=commitdiff_plain;h=00b9a04a414f142be1384d75c9ae91598ac55301 Тривиальная оптимизация find+chmod --- diff --git a/all.do b/all.do index d7b84e6..7d5a878 100644 --- a/all.do +++ b/all.do @@ -11,5 +11,5 @@ ${MAKEINFO:-makeinfo} --html \ --set-customization-variable CLOSE_QUOTE_SYMBOL=\" \ --set-customization-variable OPEN_QUOTE_SYMBOL=\" \ -o $html index.texi -find $html -type d -exec chmod 755 {} \; -find $html -type f -exec chmod 644 {} \; +find $html -type d -exec chmod 755 {} + +find $html -type f -exec chmod 644 {} +