Skip to content

Instantly share code, notes, and snippets.

@schpet
Forked from mwhite/expanded_history.py
Last active December 28, 2015 21:59
Show Gist options
  • Save schpet/7568519 to your computer and use it in GitHub Desktop.
Save schpet/7568519 to your computer and use it in GitHub Desktop.
"""
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