wikiart_512x512 / unzip.sh
haganelego's picture
Upload 25 files
f8948b4 verified
raw
history blame contribute delete
93 Bytes
#!/bin/bash
for file in *; do
if [ -f "$file" ]; then
unzip "$file"
fi
done