Skip to content

Instantly share code, notes, and snippets.

@ws141
Created October 28, 2019 09:45
Show Gist options
  • Save ws141/956f67982698b8bdb5aec3798909098f to your computer and use it in GitHub Desktop.
Save ws141/956f67982698b8bdb5aec3798909098f to your computer and use it in GitHub Desktop.
Timestamp in ms to date converter alias for macOS
# Timestamp in ms to date converter
alias ts='function msToDate() { if [ -n "$1" ]; then date -r $(($1 / 1000)); else echo "Usage: ts [timestamp in ms]"; fi }; msToDate'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment