cli-loading-bar/dummy.sh
2025-04-10 14:00:42 +02:00

15 lines
296 B
Bash
Executable file

#!/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!"