We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I was surprised dropping snzip in with other compressors that it enforces filename extensions.
Thus:
echo foo | snzip -c >foo.sz; snzcat foo.sz
works. But
echo foo | snzip -c >foo.sz; mv foo.sz foo.sz~; snzcat foo.sz~
fails with error "foo.sz~ has unknown suffix". However
snzcat <foo.sz~
will work fine, because it hides the filename from snzcat.
This behavior is stricter than gzip and xz, and it makes it hard to use snzip as a drop-in.
Perhaps a -f option could force compression, even if the filename is unrecognized?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I was surprised dropping snzip in with other compressors that it enforces filename extensions.
Thus:
works. But
fails with error "foo.sz~ has unknown suffix".
However
will work fine, because it hides the filename from snzcat.
This behavior is stricter than gzip and xz, and it makes it hard to use snzip as a drop-in.
Perhaps a -f option could force compression, even if the filename is unrecognized?
The text was updated successfully, but these errors were encountered: