Files
bash-tut/really-long-command

7 lines
93 B
Plaintext
Raw Permalink Normal View History

2026-01-09 09:51:51 +01:00
#! /usr/bin/env bash
2026-01-09 12:59:07 +01:00
for i in {1..4}; do
echo "[$$] finished ${i}/4 ticks"
sleep 1
done