-
-
Save schpet/7568519 to your computer and use it in GitHub Desktop.
hack https://gist.github.com/mwhite/7509467 to work with zsh
This file contains hidden or 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
""" | |
Outputs history with bash and git aliases expanded. | |
""" | |
import re | |
from subprocess import check_output | |
BASH_ALIASES = {} | |
#for line in check_output('bash -i -c "alias -p"', shell=True).split('\n'): | |
for line in check_output('zsh -i -c "alias"', shell=True).split('\n'): | |
if not line.strip(): | |
continue | |
match = re.match(r"^(.+?)='?(.+?)'?\n*$", line) | |
if match == None: | |
print "wtf: " | |
print line | |
print "\n" | |
continue | |
BASH_ALIASES[match.group(1)] = match.group(2) | |
GIT_ALIASES = {} | |
for line in check_output('git config --get-regexp alias*', shell=True).split('\n'): | |
if not line.strip(): | |
continue | |
match = re.match(r"^alias\.(.+?) (.+)$", line) | |
GIT_ALIASES[match.group(1)] = match.group(2) | |
def expand(cmd): | |
try: | |
number, cmd = cmd.strip().split(' ', 1) | |
cmd = cmd.strip() | |
except ValueError: | |
# empty line | |
return cmd | |
for alias, expansion in BASH_ALIASES.items(): | |
cmd = re.sub(r"^" + re.escape(alias) + '(\s|$)', expansion + ' ', cmd) | |
for alias, expansion in GIT_ALIASES.items(): | |
cmd = re.sub(r"^git " + re.escape(alias) + "(\s|$)", "git %s " % expansion, cmd) | |
return " %s %s" % (number, cmd) | |
if __name__ == "__main__": | |
for line in check_output('bash -i -c "history -r; history"', shell=True).split('\n'): | |
print expand(line) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment