Initial commit

This commit is contained in:
2023-06-25 00:51:45 +01:00
parent 1121bee3aa
commit 2492d1d1c4
7 changed files with 62 additions and 18 deletions

9
stopwatch.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh
start=$(date +%s)
while true; do
time="$(($(date +%s) - $start))"
printf '%s\r' "$(date -u -d "@$time" +%H:%M:%S)"
sleep 1s;
done