Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save emjayoh/5908e3eb07f22259aa8c1a7cfda5e3d7 to your computer and use it in GitHub Desktop.
Save emjayoh/5908e3eb07f22259aa8c1a7cfda5e3d7 to your computer and use it in GitHub Desktop.
Bash history to Zsh history
// This is how I used it:
// $ node bash-history-to-zsh-history.js >> ~/.zsh_history
var fs = require("fs");
var a = fs.readFileSync(".bash_history");
var time = Date.now();
a.toString().split("\n").forEach(function(line){
console.log(": "+ (time++) + ":0;"+line);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment