Check temporary paths for tar.gz compression and extraction.
#43
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
When compressing a file or directory using the
compress tar-gzcommand, the contents are first packed into a Tar file stored in a temporary file in the directory of the final product. However, the shell never checks to see if it is overriding a file, and just assumes none already exists. The shell should either put the temporary file in its temp directory or have a different naming scheme if the file already exists. The first option is definitely easier and makes more sense.