mirror of
https://github.com/gunchev/home_bin.git
synced 2026-01-20 08:22:45 +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"
|