Skip to content

Instantly share code, notes, and snippets.

@stephen-mw
Created June 15, 2016 18:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stephen-mw/5eabfffb7170fc992f6d73b1d438413b to your computer and use it in GitHub Desktop.
Save stephen-mw/5eabfffb7170fc992f6d73b1d438413b to your computer and use it in GitHub Desktop.
Linux/Bash get the epoch linux time in milliseconds
# If you don't care too much about the granularity, just multiply by 1000 :-)
echo $((`date +%s` * 1000))
1466013952000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment