mirror of
https://github.com/gunchev/home_bin.git
synced 2026-01-20 08:22:45 +00:00
8 lines
148 B
Bash
Executable file
8 lines
148 B
Bash
Executable file
#!/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"
|