You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tar -I lz4mt -cf tcc.tar.lz4 * is inconsistent with -l lz4. It's currently writing the content in the disk by its own as a default instead of passing to STDOUT when no output filename is provided. As a result I'm getting a file named "stdin" and an empty "tcc.tar.lz4". Forcing STDOUT with -c correct the behavior:
The text was updated successfully, but these errors were encountered:
tar -I lz4mt -cf tcc.tar.lz4 *
is inconsistent with-l lz4
. It's currently writing the content in the disk by its own as a default instead of passing to STDOUT when no output filename is provided. As a result I'm getting a file named "stdin" and an empty "tcc.tar.lz4". Forcing STDOUT with-c
correct the behavior:The text was updated successfully, but these errors were encountered: