I would like to point out a bug that has already been reported last
year [1].
Observed behaviour:
$ echo foo > test
$ gzip --suffix z test
$ ls testz
testz
$ gzip -d --suffix z testz
gzip: testz: unknown suffix -- ignored
Expected behaviour:
$ gzip -d --suffix z testz
$ ls test
test
From the c
Op Sun, 10 Aug 2014 16:31:10 -0700
schreef Paul Eggert :
> Thanks for re-reporting that. I didn't see a patch in your email,
> but I installed one (attached); please give it a try.
Sorry, forgot to attach mine. Yours is cleaner anyway and works fine.
Thanks for the fix.