Skip Navigation
🍑rule.gyat
  • If anybody is curious, it's a real preprocessor for Python called PyGyat.

  • I made a little tool to unzip archives in a sane way
  • Vert guarantees a single file/directory when you extract something with it. If there are more than 1 file in the archive it will nest them in a directory. I have no plans to add any flags or anything to make it extract without nesting either.

  • I made a little tool to unzip archives in a sane way
  • So it detects if there's a single folder inside the zip containing all the files or all the files directly inside the zip?

    Yes. It also has l (lowercase L) subcommand which lists the contents of the archives to the terminal (stdout).

  • I made a little tool to unzip archives in a sane way
  • UPDATE: Implemented VERT_USE_EXTERNAL_TOOLS environment variable. See #Configuration.

    I had passed the filter parameter as "data", which should help prevent most issues with it but yes I agree that it would've been better to use external tools to do the heavy-lifting. I avoided them to make the program cross-platform and easier to setup (you currently can just run a simple pip command to install it). I may introduce them as optional backends later with a warning on the default ones but for now I'm postponing it.

  • I made a little tool to unzip archives in a sane way
    github.com GitHub - eeriemyxi/vert: Sane way to extract/view archived contents.

    Sane way to extract/view archived contents. Contribute to eeriemyxi/vert development by creating an account on GitHub.

    GitHub - eeriemyxi/vert: Sane way to extract/view archived contents.

    I like trying out new things quite frequently and often times these tools are packed in an archive file. But I'm in constant fear whenever I am to unpack those archives because sometimes there are hundreds of files and the person who packed them wouldn't even do the bare minimum of nesting them inside a directory.

    Dolphin (file explorer) had a useful thing where it would detect whether the contents are already nested and if they are not only then it would nest them inside a directory. I tried searching for something similar for the CLI but couldn't find anything so here it is. Another benefit is that it supports .zip, .tar.xz, .tar.gz simultaneously so I don't need to deal with manpages of unzip, tar thousand times just because I keep forgetting how to use them. Now it's just vert x file.zip.

    I can add support for a few more formats but I don't feel the need at least for now (PRs welcome).

    12
    myxi myxi @toast.ooo

    A computer science enthusiast.

    Posts 1
    Comments 4