Simple program that unzips/decompresses/dewinrarifies whatever you throw at it.
- Clone this repo:
git clone https://github.com/Rickard-Martensson/runzip.git
- Navigate to the
runzipfolder
cd runzip- Make script executable
chmod +x runzip.pyCreate a symlink to make runzip accessible from any directory:
sudo ln -s /path/to/your/runzip/runzip.py /usr/local/bin/runzipReplace /path/to/your/runzip.py with the actual path where you have runzip.py.
For me, that is /home/rickard/Code/python/runzip/runzip.py
Before using the runzip.py script, make sure you have the following dependencies installed on your Arch Linux system:
unzip: For extracting ZIP files.tar: For extracting TAR files.gzip: For decompressing GZ files.p7zip: For decompressing 7z files.
You can install these dependencies using the pacman package manager. Open a terminal and run the following command:
sudo pacman -S unzip tar gzipTo unzip a file, simply type
runzip <filename>If you want to test it out, you can use any of the 4 sample files. ie:
runzip sample_zipped/sample.tar.bz2Good luck!
- .zip
- .tar
- .gz
- .tar.bz2
I welcome contributions to enhance the functionality and usefulness of this project. If you're interested in contributing, please follow these steps:
- Fork the repository.
- Create a new branch for your feature/bug fix.
- Make your changes and test thoroughly.
- Submit a pull request, describing the changes you've made.
- Our team will review the pull request and provide feedback.
I appreciate your contributions and efforts in making this project better!
This project is licensed under the MIT License. You are free to use, modify, and distribute the code according to the terms of the license.
I'd like to express my gratidude to Rickard Mårtensson for making all of this when I was annoyed. I'm sure there are better solutions out there but you know.