Created
January 23, 2016 23:39
-
-
Save christopherstott/59a5e36b8d2f3f015bb7 to your computer and use it in GitHub Desktop.
Import ZSH history to Fish
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const fs = require('fs'); | |
const expandHomeDir = require('expand-home-dir'); | |
const zshHistoryRaw = fs.readFileSync(expandHomeDir('~/.zsh_history'), 'utf8'); | |
const zshHistoryLines = zshHistoryRaw.split('\n'); | |
const transformLine = line => { | |
try { | |
const semicolonIndex = line.indexOf(';'); | |
const command = line.substring(semicolonIndex + 1); | |
const when = line.substring(0, semicolonIndex).split(':')[1].trim(); | |
return `- cmd: ${command}\n when: ${when}`; | |
} catch (e) { | |
// Probably a continuation of the previous line. | |
// I don't care about these | |
} | |
}; | |
const fishHistory = zshHistoryLines.map(line => transformLine(line)).join('\n'); | |
fs.writeFileSync(expandHomeDir('~/.config/fish/fish_history'), fishHistory, 'utf8'); |
Works! You should maybe create the file if it does not exists :)
Instead of trying to find out how npm works, I put something together in Python.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Works well!