A CLI file decompression tool made by Python.
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.
It's very simple to use.
uncmprs {The file you want to unzip} [-d|--dist Unzip destination directory]
You can install it with pip install uncompressor
.
We would appreciate it if you could report any bugs. Click here for github
Recommended Posts