File size: 93 Bytes
f8948b4
 
 
 
 
 
 
1
2
3
4
5
6
7
8
#!/bin/bash

for file in *; do
    if [ -f "$file" ]; then
        unzip "$file"
    fi
done