Run the below command (Replacing the [your timestamp] with your EPOC time
date -d @[your timestamp]
If your EPOC time is 13 digits in length, this must first be divided by 1000 before running through date -d:
date -d @$(([Your timestamp] / 1000))
Run the below command (Replacing the [your timestamp] with your EPOC time
date -d @[your timestamp]
If your EPOC time is 13 digits in length, this must first be divided by 1000 before running through date -d:
date -d @$(([Your timestamp] / 1000))