# Unzip All Files In Directory

## .zip Files

```bash
unzip "*.zip"
```

Alternative for systems that only have 7zip installed.

```bash
find /volume1/Emulation/JDownloader/PS2 -type f -iname '*.zip' -execdir 7z x {} ';'
```

## .7z Files

Install 7zip first.

```bash
sudo apt install p7zip-full
```

```bash
7za -y x "*.7z" 
```

##### Unzip into individual directories

```bash
for archive in *.7z; do 7z x -o"`basename \"$archive\" .7z`" "$archive"; done
```