GithubHelp home page GithubHelp logo

Comments (5)

Cyan4973 avatar Cyan4973 commented on April 29, 2024

Not directly on its own,
but assuming a posix terminal,
you could pipe these files into zstd and get it to decompress them as if it was a single file :

cat $(ls archive.zst.0*) | zstd -d > archive

from zstd.

qtqgyt avatar qtqgyt commented on April 29, 2024

thanks :) hopefully this should help, but how to do it on windows and mac?

from zstd.

Cyan4973 avatar Cyan4973 commented on April 29, 2024

On macos, it's the same.

On windows, well, this is its own galaxy, and I'm not very familiar.
I wouldn't be surprised if there is no equivalent for the cmd command prompt.
The newer Powershell, however, might be able to pull that off.
Possibly : Get-ChildItem archive.zst.0* | Sort-Object Name | Get-Content | zstd -d > archive (untested)

from zstd.

qtqgyt avatar qtqgyt commented on April 29, 2024

ok, ill look into it maybe, thanks

from zstd.

wwinniww avatar wwinniww commented on April 29, 2024

Files with extension .001 and counting are usually splitted files.

At windows command line there is an easy way to join them into one larger file.

copy /b <filename>.zstd.001 + <filename>.zstd.002 + ... + ... [space]<filename>.zstd

from zstd.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.