Actual end date (parsed) on -v

This commit is contained in:
Mattia Mascarello 2024-10-09 23:47:45 +02:00
parent 8c4fb9eb95
commit 4e294455be

View File

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