Added script to rerun a command on a timer infinitely.

This commit is contained in:
2025-10-26 13:58:25 +00:00
parent 991c499599
commit 11b2f049fe

11
Scripts/.local/scripts/poll Executable file
View File

@@ -0,0 +1,11 @@
#!/usr/bin/env sh
timer="$1"
shift 1;
command="$@"
while :
do
sleep $timer
eval $command;
done