Elad'a yanıt olarak, insanlar (#) ile başlayan ve (123456789) sonrasında takip eden rakamlardan oluşan her komuttan önce fazladan bir satır içeren .bash_history dosyalarına sahip olabilirler, örneğin: # 123456789. Bash_history dosyanız bu ekstra satırlara sahipse, temiz bir zsh biçimlendirilmiş geçmiş kullanmak için Elad kodunun bu değiştirilmiş sürümünü kullanın. Hızlı dönüşüm kodu için teşekkürler Elad.
/*
* You should backup your .bash_history file first doing this:
* $ cp ~/.bash_history ~/.bash_history.backup
*
* create the .js file to use first:
* $ touch ~/.bash-history-to-zsh-history.js
*
* This is how I use it based on Elads example:
* $ 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){
if (line.indexOf("#")!=0) console.log(": "+ (time++) + ":0;"+line);
});