Files
bash-tut/really-long-command
2026-01-09 12:59:07 +01:00

7 lines
93 B
Bash
Executable File

#! /usr/bin/env bash
for i in {1..4}; do
echo "[$$] finished ${i}/4 ticks"
sleep 1
done