TCH (statz) | #1, Főfasz (10466) |
402 | #372c | ^ | Idézet | Fri, 16 Oct 2015 14:00:12 +02 |
188.36.*.* | *.catv.pool.telekom.hu |
http://stackoverflow.com/questions/2374772/unzip-all-files-in-a-directory/29920087#29920087 Sajna nem tökéletes script, a mkdir felesleges, a fájlnévben lévő space-k pedig fennakadást okoznak. Így jó: #!/bin/sh
for i in *.zip; do
newdir=${i%.zip}
unzip "$i" -d "$newdir" >/dev/null
done Lehet menteni pl. unzip_all néven, oszt héló. |