Menanggapi Elad, orang mungkin memiliki file .bash_history yang memiliki baris tambahan sebelum setiap perintah yang dimulai dengan (#) dan memiliki digit tambahan berikut (123456789), misalnya: # 123456789. Jika file bash_history Anda memiliki baris tambahan ini, gunakan versi modifikasi dari kode Elad ini untuk memproses riwayat berformat zsh yang bersih untuk digunakan. Terima kasih Elad untuk kode konversi cepat.
/*
* 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);
});