mirror of
https://github.com/gunchev/home_bin.git
synced 2025-11-20 12:15:46 +00:00
6 lines
95 B
Bash
Executable file
6 lines
95 B
Bash
Executable file
#!/bin/bash
|
|
|
|
ut="${1:-0}"
|
|
ht="$(date -d "@$ut")"
|
|
echo "Unix Time : $ut"
|
|
echo "Human Time: $ht"
|