Skip to content

Instantly share code, notes, and snippets.

@jjaaccoobb
Created July 22, 2020 22:41
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 jjaaccoobb/ad9f548e138e9b7d22038c467fa3d489 to your computer and use it in GitHub Desktop.
Save jjaaccoobb/ad9f548e138e9b7d22038c467fa3d489 to your computer and use it in GitHub Desktop.
Import bash history into zsh history format
while read -r line; do echo ": $(date +%s):0;$line"; done < .bash_history > .bash_history_to_zsh_history
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment