mirror of
https://github.com/rwxrob/dot
synced 2024-11-18 15:25:52 +00:00
9 lines
193 B
Bash
Executable File
9 lines
193 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
time="$*"
|
|
[[ -z "$time" ]] && echo "usage: $0 TIME (see date -d)" && exit 1
|
|
start=$(date "+%s" -d "$time")
|
|
now=$(date "+%s")
|
|
declare -i secs=$((start-now))
|
|
sec2dur "$secs"
|