Convert an Epoch time to human readable time
epoch_to_human_time.sh
#!/bin/bash
TD=$(echo $1 | cut -c -10)
gdate -d @$TD
Home of Shariq Mustaquim on the Internet!
epoch_to_human_time.sh
#!/bin/bash
TD=$(echo $1 | cut -c -10)
gdate -d @$TD