mirror of
https://github.com/octoleo/telegram-bot-bash.git
synced 2024-11-15 20:47:08 +00:00
20 lines
378 B
Plaintext
20 lines
378 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# This file is public domain in the USA and all free countries.
|
||
|
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
||
|
|
||
|
# check if $1 is a number
|
||
|
re='^[0-9]+$'
|
||
|
if [[ $1 =~ $re ]] ; then
|
||
|
SLEEP="$1"
|
||
|
else
|
||
|
SLEEP=10 # time between time notifications
|
||
|
fi
|
||
|
|
||
|
# output current time every $1 seconds
|
||
|
while sleep $SLEEP
|
||
|
do
|
||
|
date "+* It's %k:%M:%S o' clock ..."
|
||
|
done
|
||
|
|