Skip to content

Instantly share code, notes, and snippets.

@fhssn1
Created July 31, 2016 22:23
Show Gist options
  • Save fhssn1/34097d52e32d0b21ef8c26e9faf8220d to your computer and use it in GitHub Desktop.
Save fhssn1/34097d52e32d0b21ef8c26e9faf8220d to your computer and use it in GitHub Desktop.
Process timestamps in zsh history
paste -d' ' <(cat ~/.zsh_history | grep '^: ' | cut -b3-12 | xargs -I{} date -d @{} +'%Y-%m-%d %H:%M:%S') <(cat ~/.zsh_history | cut -b16-) > ~/.zsh_history_processed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment