From: Paul Eggert Date: Tue, 11 May 2010 23:36:20 +0000 (-0700) Subject: * doc/gzip.texi (Sample): Fix backslash quoting problem. X-Git-Tag: v1.5~73 X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=e560df7adc514aff3df350fe723ea34f6fc0ae06;p=debian%2Fgzip * doc/gzip.texi (Sample): Fix backslash quoting problem. Problem reported by Ole Tange in . --- diff --git a/doc/gzip.texi b/doc/gzip.texi index a6009d2..a7e72b8 100644 --- a/doc/gzip.texi +++ b/doc/gzip.texi @@ -228,7 +228,7 @@ stopping on the first failure: find . -name '* *' -prune -o -name '*.gz' -type f -print | sed " - s/'/'\\''/g + s/'/'\\\\''/g s/^\\(.*\\)\\.gz$/gunzip <'\\1.gz' >'\\1'/ " | sh -e