Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

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
└── README

1 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.zip

3 directories, 5 files
```