mirror of
https://github.com/gunchev/home_bin.git
synced 2025-11-20 12:15:46 +00:00
9 lines
148 B
Text
9 lines
148 B
Text
|
|
#!/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"
|