This Rust CLI application provides a way to convert epoch timestamps to human-readable local time and vice versa. It also supports optional timezone adjustments.
Clone the repository and navigate to the project directory:
git clone https://github.com/ztroop/epoch.git && cd epoch
cargo install --path .
epoch -e 1631560200
epoch -e 1631560200 -z UTC+3
epoch -d "2023-09-14T12:34:56" -f "%Y-%m-%dT%H:%M:%S"
epoch -d "2023-09-14T12:34:56" -f "%Y-%m-%dT%H:%M:%S" -z UTC-3
The timezone offset should be specified as UTC±N
, where N
is the hour offset from UTC. For example:
- For UTC+3:
UTC+3
- For UTC-3:
UTC-3