12 lines
233 B
Bash
Executable file
12 lines
233 B
Bash
Executable file
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
source ${HOME}/bin/script_framework.sh
|
|
|
|
time=${1:-}
|
|
[ -z "${time}" ] && fail "No time specified"
|
|
|
|
tdiff=$(($(date -d "$1" +%s) - $(date +%s)))
|
|
step "Sleeping ${tdiff}s until ${time}..."
|
|
|
|
sleep ${tdiff}
|