Tập lệnh bash sau đây trích xuất tất cả các tệp zip trong thư mục hiện tại thành các thư mục mới với tên tệp của tệp zip, nghĩa là:
Các tập tin sau:
myfile1.zip
myfile2.zip
Sẽ được trích xuất để:
./myfile1/files...
./myfile2/files...
Kịch bản Shell:
#!/bin/sh
for zip in *.zip
do
dirname=`echo $zip | sed 's/\.zip$//'`
if mkdir "$dirname"
then
if cd "$dirname"
then
unzip ../"$zip"
cd ..
# rm -f $zip # Uncomment to delete the original zip file
else
echo "Could not unpack $zip - cd failed"
fi
else
echo "Could not unpack $zip - mkdir failed"
fi
done