#!/bin/bash for file in *; do if [ -f "$file" ]; then unzip "$file" fi done