Sometimes zip files are rude and don't have a top directory. Here's a one-liner to unzip a bunch of archives into directories named after each file:

```
for f in *.zip; do unzip -d ${f/.zip/} $f; done
```

#bashTricks #shTricks #shellTricks