4 lines
73 B
Bash
4 lines
73 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
find . -type f -iname "*.zip" | xargs -I {} unzip -d {}_ {}
|