#!/bin/bash # Simulate a "download" process with fake delays echo "Starting download (3 files)..." sleep 2 echo "Downloading file 1 of 3..." sleep 2 echo "Downloading file 2 of 3..." sleep 2 echo "Downloading file 3 of 3..." sleep 2 echo "Extracting files..." sleep 1 echo "Download complete!"