tansy
tansy
> my fork targets it: https://github.com/cielavenir/7-Zip-PKImplode/tree/c2891144efabe99958d95838a9b0c2f4f3d6b61b/CPP/7zip/Compress/Zstd It just moves it to separate directory but still in 7zip source tree, so to speak. I think, and @[jinfeihan57](https://github.com/jinfeihan57) [agreed](https://github.com/jinfeihan57/p7zip/issues/141#issuecomment-843157821) to it, they...
You can get file without specifies extension ibn bash easily. $ `for FILEZIP in *.zip; do FILE={FILEZIP%.zip}; unzip -d $FILE $FILEZIP; done` Check parameter expansion in [bash manual](https://linux.die.net/man/1/bash).
That's not exactly what I meant. That's how it looks now: ``` ├─ p7zip │ ├─ .github │ ├─ Asm │ ├─ C │ │ ├─ brotli │ │ │...
There is nothing easier than creating non-solid archive. Every file separately: ``` $ 7z a -ms=off arc-ms-off.7z * ``` In N-files blocks ( N is number of files in block,...
In bash ```sh for f in *.7z; do 7z x "$f" if [ $? -eq 0 ]; then rm "$f" else echo error extracting "$f" fi done ``` `$?` is...
> I can see that you converted .dsp/.dsw CRLF to LF (...) It will not work for sure That's true. They have to be converted do CRLF "manually". you can...
You may want to check [this "patch"](https://github.com/unxed/oemcp/blob/master/p7zip_oemcp_ZipItem.cpp.patch) and [this thread](https://sourceforge.net/p/p7zip/bugs/187/) at sf.
> if I put too much effort on 19.00, it will delay the update of p7zip 21.00. 😄 I don't think he (Pavlov) will release it soon as he did...
> The source will be released in several weeks. Sorry to say it but I don't buy it. Quote: > It's possible to merge 7-Zip code with p7zip compiler scripts....
> I noticed, but there are too many files to modify. Is there any good way to achieve batch modification? According to [git documentation on gitattributes](https://git-scm.com/docs/gitattributes) it should respect `.gitattributes`...