7 lines
93 B
Bash
Executable File
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
|