mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
13 lines
301 B
Bash
Executable File
13 lines
301 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
printf '%s%s%s\n' 'START. Can be terminated with "kill -TERM ' "$$" '"'
|
|
while :; do
|
|
printf '%s\n' 'sleeping 10s'
|
|
sleep 10s
|
|
printf '%s\n' 'awoke from sleep'
|
|
done
|
|
printf '%s\n' 'END'
|
|
|
|
# When executing `kill -TERM $PID` in another terminal,
|
|
# this script terminates instantly.
|