home_bin/time/unix2time

7 lines
95 B
Text
Raw Normal View History

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