ในการตอบสนองต่อ Elad ผู้คนอาจมีไฟล์. bash_history ที่มีบรรทัดเพิ่มเติมก่อนแต่ละคำสั่งที่ขึ้นต้นด้วย (#) และมีตัวเลขต่อท้ายที่ตามมา (123456789) ตัวอย่างเช่น # 123456789 หากไฟล์ bash_history ของคุณมีบรรทัดพิเศษเหล่านี้ให้ใช้โค้ด Elad เวอร์ชันที่แก้ไขเพื่อประมวลผลประวัติที่จัดรูปแบบ zsh ใหม่ทั้งหมดเพื่อใช้ ขอขอบคุณ 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);
});