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