Compare commits

..

No commits in common. "main" and "1" have entirely different histories.
main ... 1

View File

@ -11,11 +11,10 @@ seconds_until() {
# Function to sleep until a given datetime # Function to sleep until a given datetime
sleep_until() { sleep_until() {
target="$1" target="$1"
extended_format=$(date -d "$target" "+%c") # Format datetime into extended format
seconds=$(seconds_until "$target") seconds=$(seconds_until "$target")
if [ $seconds -gt 0 ]; then if [ $seconds -gt 0 ]; then
if [ "$verbose" == true ]; then if [ "$verbose" == true ]; then
echo "Sleeping until $extended_format..." echo "Sleeping until $target..."
fi fi
sleep $seconds sleep $seconds
fi fi