3 releases

new 0.1.2 Apr 22, 2024
0.1.1 Apr 18, 2024
0.1.0 Apr 18, 2024

#1157 in Command line utilities

Download history 214/week @ 2024-04-15

214 downloads per month

Custom license

11KB
81 lines

retz - retimezone

Convert timestamps to other timezones.

Installation

With Cargo

cargo install retz

Usage

Command-line tool to convert timestamps to other timezones

Usage: retz [OPTIONS] [DATE]

Arguments:
  [DATE]  Date time in only proper format (RFC3339)

Options:
  -t, --to <TZ>  Convert to timezone
  -q, --quiet    Quiet, return just either target (if defined) or UTC
  -a, --all      List all timezones
  -o, --order    Order by offset instead of alphabetical
  -h, --help     Print help
  -V, --version  Print version

Current time to UTC and local

$ retz
   UTC: 2024-03-31T09:34:56Z
 Local: 2024-03-31T12:34:56+03:00

Current time to UTC (scriptable output)

$ retz -q
2024-03-31T12:00:00Z

Input time to convert to UTC and local timezones

$ retz "2024-03-31T12:00:00Z"   
 Input: 2024-03-31T12:00:00Z
   UTC: 2024-03-31T12:00:00Z
 Local: 2024-03-31T15:00:00+03:00

Convert to specific timezone

$ retz -t "Australia/Eucla" 
   UTC: 2024-03-31T12:00:00Z
 Local: 2024-03-31T15:00:00+03:00
Target: 2024-03-31T20:45:00+08:45

Convert to all known timezones

$ retz -a 
                             UTC: 2024-03-31T12:00:00Z
                           Local: 2024-03-31T15:00:00+03:00
                  Africa/Abidjan: 2024-03-31T12:00:00Z
                    Africa/Accra: 2024-03-31T12:00:00Z
              Africa/Addis_Ababa: 2024-03-31T15:00:00+03:00
                             ...
                             UTC: 2024-03-31T12:00:00Z
                       Universal: 2024-03-31T12:00:00Z
                            W-SU: 2024-03-31T15:00:00+03:00
                             WET: 2024-03-31T13:00:00+01:00
                            Zulu: 2024-03-31T12:00:00Z

Dependencies

~3–4.5MB
~69K SLoC