raulfraile / distill-cli
Command line tool to extract files from compressed archives
Requires
- php: >=5.4.0
- raulfraile/distill: v0.2
- symfony/console: ~2.5
Requires (Dev)
- raulfraile/ladybug: ~1.0
This package is not auto-updated.
Last update: 2024-11-05 05:03:02 UTC
README
distill-cli
is a command line tool to extract files from compressed archives. It relies on the raulfraile/distill
library to extract files from bz2
, gz
, phar
, rar
, tar
, tar.bz2
, tar.gz
, tar.xz
, 7z
, xz
and zip
archives.
Installation
Locally
Download the distill-cli.phar file and store it somewhere on your computer.
Globally (manual)
You can run these commands to easily access distill-cli from anywhere on your system:
$ sudo wget https://raw.githubusercontent.com/raulfraile/distill-cli/master/bin/distill-cli.phar -O /usr/local/bin/distill-cli
or with curl:
$ sudo curl https://raw.githubusercontent.com/raulfraile/distill-cli/master/bin/distill-cli.phar -o /usr/local/bin/distill-cli
then:
$ sudo chmod a+x /usr/local/bin/distill-cli
Then, just run distill-cli
.
Globally (Composer)
To install distill-cli
, install Composer and issue the following command:
$ ./composer.phar global require raulfraile/distill-cli @stable
Then, make sure you have ~/.composer/vendor/bin in your PATH, and you're good to go:
export PATH="$PATH:$HOME/.composer/vendor/bin"
Usage
$ distill-cli command file [target]
Example:
$ distill-cli extract archive.tar.gz path/
Credits
- Raul Fraile (@raulfraile)
- All contributors
License
distill-cli
is released under the MIT License. See the bundled LICENSE file for details.