I made a tool that makes decompression a little easier with CLI (Python3)

uncompressor2.png

What is uncompressor

A CLI file decompression tool made by Python.

Motivation

I prefer CUI to GUI.

The reason is that if you get used to it, the work will be faster than the GUI, but there are some places where you may think that it is not as smart as the GUI.

And I think that anyone who has decompressed files with CUI has felt this once.

Can't you remember the compression / decompression commands? </ font>

The decompression of the .zip format file is ʻunzip, but if it is .tar, it becomes tar -xvf`. Why? ?? I thought at first.

Even if tar is tar, it is painful because the options change if the compression method changes, such as gzip, bzip2. If it's a command you use often, you can remember the options even if it's a little complicated, but you don't decompress it so often ...

This __ uncompressor__ </ font> was created to solve this problem.

demo

82409543-fd1de700-9aa8-11ea-8459-aa2f2ad50901.gif

How to use

It's very simple to use.

uncmprs {The file you want to unzip} [-d|--dist Unzip destination directory]

Installation

You can install it with pip install uncompressor.

at the end

We would appreciate it if you could report any bugs. Click here for github

Recommended Posts