Extract (and delete) archive files under present working directory.
By default, the script will extract the archives into prefix/archive filename
.
Prefix defaults to current directory.
That is, extraction of "flowers.zip" creates "flowers" directory with archive contents under prefix directory.
- To specify custom prefix, use
-p
option.
arxd -p /path/to/prefix
- To delete the files after extraction, specify
-d
option.
arxd -d
- To ignore files, you can give regex pattern using
-i
option.
arxd -i PATTERN
More in help message with -h
option.
- Clone the repository or download zip.
cd
into project root.- Use your favourite python package manager to install. (See next step)
- Run
pip install .
orpipx install .
.