Migrate 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
import os | |
import re | |
def zsh_to_fish(cmd): | |
return (cmd.replace('&&', '; and ') | |
.replace('||', '; or ')) | |
def is_valid_fish(cmd): | |
for reg in r'^\S+=', r'\$\(', r'\[ ', r'`', r'\\$': | |
if re.match(reg, cmd): | |
return False | |
return True | |
with open(os.path.expanduser('~/.local/share/fish/fish_history'), 'a') as o: | |
with open(os.path.expanduser('~/.zsh_history')) as f: | |
for line in f: | |
line = line.strip() | |
if line and re.match('^:\s+\d+:\d;', line): | |
meta, command = line.split(';', 1) | |
command = zsh_to_fish(command) | |
if is_valid_fish(command): | |
time = meta.split(':')[1].strip() | |
print('Add', command) | |
o.write('- cmd: %s\n when: %s\n' % (command, time)) |
I had some encoding issues while running it with my history. I fixed it like this:
--- zsh_to_fish.py 2020-06-22 02:13:36.311314807 +0200
+++ zsh_to_fish_fixed.py 2020-06-22 02:12:12.530619810 +0200
@@ -15,8 +15,9 @@
with open(os.path.expanduser('~/.local/share/fish/fish_history'), 'a') as o:
- with open(os.path.expanduser('~/.zsh_history')) as f:
+ with open(os.path.expanduser('~/.zsh_history'), 'rb') as f:
for line in f:
+ line = line.decode(errors='replace')
line = line.strip()
if line and re.match('^:\s+\d+:\d;', line):
meta, command = line.split(';', 1)
@@ -25,3 +26,4 @@
time = meta.split(':')[1].strip()
print('Add', command)
o.write('- cmd: %s\n when: %s\n' % (command, time))
+
@Depau Had the same. Fix works. Thanks.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Still works, thanks! :)