tar
Here are 332 public repositories matching this topic...
-
Updated
Sep 28, 2021 - JavaScript
-
Updated
Oct 2, 2021 - C#
-
Updated
Sep 29, 2021 - Python
-
Updated
May 18, 2021 - C
-
Updated
Oct 2, 2021 - C++
WOFF format support
-
Updated
Oct 4, 2021 - C
-
Updated
Sep 29, 2021 - Shell
-
Updated
Oct 8, 2021 - Shell
-
Updated
Jan 14, 2021 - JavaScript
-
Updated
Oct 6, 2021 - PHP
-
Updated
Sep 8, 2021 - C++
Typescript support
Do you plan on generating declaration files for supporting Typescript?
You could either have them as part of the repo or contribute to https://github.com/DefinitelyTyped/DefinitelyTyped/
Thanks in advance!
-
Updated
Oct 9, 2021 - Python
-
Updated
Oct 13, 2020 - Go
-
Updated
Feb 23, 2018
MacOs brew package?
I've compiled this successfully on my Mac, and it seems to work perfectly. I wondered if you could make it available via brew (https://brew.sh/).
There was just one compilation warning:
`warning: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: archive library: libcompat.a the table of contents is empty (no object file members in the library def
Suggestions:
- Should change word "bundle" to "archive".
- When the destination is
'.', outputcurrent directoryinstead. - Maybe remove the periods, they are pointless here, syntax feels weird after single quotes:
'./file'.. - The command is called
decompress, but
-
Updated
Aug 6, 2021 - PHP
-
Updated
Sep 30, 2021 - C++
-
Updated
Oct 5, 2021 - C++
Improve this page
Add a description, image, and links to the tar topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the tar topic, visit your repo's landing page and select "manage topics."



I was able to confirm that
os.Create()will happily follow symlinks.Although standard tools like
tarwill not likely allow you to add two files with the same name to an archive file, it's certainly easy enough to do in code. This means that we need to add an additional check before writing to a destination to make sure that it's not a symlink outside of the destination.The vulnerab