#!/bin/bash
[ -z "$1" ] && echo "usage: $0 <epoch>" && exit 1
echo $1 | awk '{print strftime("%c",$1)}'
