home_bin/time/time2unix

9 lines
148 B
Text
Raw Normal View History

#!/bin/bash
ht="${1:-now}"
ut="$(date '+%s' -d "$ht")"
echo "Human Time: $ht"
echo "Unix Time : $ut"
ht="$(date -d "@$ut")"
echo "Human Time: $ht"