Created
June 15, 2016 18:07
-
-
Save stephen-mw/5eabfffb7170fc992f6d73b1d438413b to your computer and use it in GitHub Desktop.
Linux/Bash get the epoch linux time in milliseconds
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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