Skip to content

Instantly share code, notes, and snippets.

View davidsusu's full-sized avatar

Dávid Horváth davidsusu

View GitHub Profile
@davidsusu
davidsusu / stopwatch.sh
Last active April 9, 2025 07:05
Stopwatch bash script
#!/bin/bash
export LC_NUMERIC="POSIX"
arg="$1"
if [ "$arg" = '-h' ] || [ "$arg" = '--help' ]; then
echo "Usage:"
echo " <space> = Finish round"
echo " <enter> = Finalize"
exit 0