About

Date/time CLI utility

Usage

text dtg [-V|--version] [-h|--help] \ [-z TZ] [-f FORMAT] \ [-r] [-a] \ [TIMESTAMP]

Item | Description | Default ------------------|-------------------------|--------------------- -V, --version | Print version | -h, --help | Print usage | -z TZ | Timezone (1) | UTC -l | -z local | -f FORMAT | Format (2) | %Y-%m-%dT%H:%M:%SZ -a | Custom format (3) | TIMESTAMP | SECONDS[.NS] | Now

  1. Implies -f '%a %d %b %Y %H:%M:%S %Z'
  2. Format fields are roughly equivalent to strftime but with some enhancements; for details, see: https://docs.rs/chrono/latest/chrono/format/strftime#specifiers
  3. Equivalent to the following; implies -l, override via -z TZ

    text dtg -f '%s.%f' dtg -f '%Y-%m-%dT%H:%M:%SZ' dtg -f '%a %d %b %Y %H:%M:%S %Z' dig -f '%a %d %b %Y %H:%M:%S %Z' -z TZ

Examples

Get current date/time in UTC and RFC 3339 format:

text $ dtg 2020-11-27T03:21:16Z

Get current date/time in the local timezone and default format:

text $ dtg -l Thu 26 Nov 2020 22:21:16 EST

Get current date/time in explicit / other timezone and default format:

text $ dtg -z MST Thu 26 Nov 2020 20:21:16 MST

text $ dtg -z America/Los_Angeles Thu 26 Nov 2020 19:21:16 PST

Get current date/time in custom format (see note 3 above):

text $ dtg -a 1606447276.941324100 2020-11-27T03:21:16Z Fri 27 Nov 2020 03:21:16 UTC Thu 26 Nov 2020 22:21:16 EST

Get current date/time in explicit / other timezone and custom format (see note 3 above):

text $ dtg -a -z MST 1606447276.941324100 2020-11-27T03:21:16Z Fri 27 Nov 2020 03:21:16 UTC Thu 26 Nov 2020 20:21:16 MST

Get a specific date / time in UTC and RFC 3339 format:

text $ dtg 1606447276.941324100 2020-11-27T03:21:16Z

Get a specific date/time in the local timezone and default format:

text $ dtg -l 1606447276.941324100 Thu 26 Nov 2020 22:21:16 EST

Get a specific date/time in explicit / other timezone and default format:

text $ dtg -z MST 1606447276.941324100 Thu 26 Nov 2020 20:21:16 MST

text $ dtg -z America/Los_Angeles 1606447276.941324100 Thu 26 Nov 2020 19:21:16 PST

Get a specific date/time in custom format (see note 3 above):

text $ dtg -a 1606447276.941324100 1606447276.941324100 2020-11-27T03:21:16Z Fri 27 Nov 2020 03:21:16 UTC Thu 26 Nov 2020 22:21:16 EST

Get a specific date/time in explicit / other timezone and custom format (see note 3 above):

text $ dtg -a -z MST 1606447276.941324100 1606447276.941324100 2020-11-27T03:21:16Z Fri 27 Nov 2020 03:21:16 UTC Thu 26 Nov 2020 20:21:16 MST

Changelog