Skip to content

Prints the current date and time as a UNIX timestamp or custom format

License

Notifications You must be signed in to change notification settings

sindresorhus/date-now-cli

Repository files navigation

date-now-cli

Prints the current date and time as a UNIX timestamp or custom format

Similar to the date +%s command, but cross-platform and prints milliseconds instead of seconds.

Install

$ npm install --global date-now-cli

Or for a one-time run:

$ npx date-now-cli

Usage

$ date-now --help

  Usage
    $ date-now

  Options
    --format=<string>, -f  Format the date

  Examples
    $ date-now
    1524733860619
    $ date-now --format='dd.MM.yyyy'
    11.08.2021

  See the date-fns docs for supported formats

Related

  • delay-cli - Delay execution for a given amount of seconds