Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gedex/unzipall
Unzip all zip files
https://github.com/gedex/unzipall
Last synced: about 1 month ago
JSON representation
Unzip all zip files
- Host: GitHub
- URL: https://github.com/gedex/unzipall
- Owner: gedex
- License: mit
- Created: 2015-03-13T09:48:27.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-10-31T09:03:24.000Z (about 8 years ago)
- Last Synced: 2024-08-02T20:46:14.007Z (4 months ago)
- Language: Go
- Size: 1.95 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-indo-projects - unzipall - Unzip all zip files in src directory to dst directory. (Go)
- awesome-indonesia-repo - unzipall - Unzip all zip files in src directory to dst directory. (Go)
- awesome-vietnam-repo - unzipall - Unzip all zip files in src directory to dst directory. (Go)
README
unzipall
========Unzip all zip files in `src` directory to `dst` directory.
## Install
```
go install github.com/gedex/unzipall
```## Instruction
Suppose you have directory `mydir`:
```
tree mydir
mydir/
├── sub
│ ├── 1.zip
│ └── 2.zip
└── README1 directory, 3 files
```Running `unzipall` with:
```
unzipall -src=./mydir/ -dst=./mydir/
```will result in:
```
tree mydir
mydir/
README
└── sub
├── 1
│ └── a.bin
├── 1.zip
├── 2
│ └── b.bin
└── 2.zip3 directories, 5 files
```