Skip to content

Instantly share code, notes, and snippets.

@Ohcanep
Last active April 3, 2016 07:46
Show Gist options
  • Save Ohcanep/2fcaf9739c194383c1ff to your computer and use it in GitHub Desktop.
Save Ohcanep/2fcaf9739c194383c1ff to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
git config --get-regexp 'alias.*' | colrm 1 6 | sort | while read -r line; do
alias_name=$(echo "$line" | cut -d ' ' -f 1)
alias_command=$(echo "$line" | cut -d ' ' -f 2-)
printf "\033[1;37m%16s \033[0;39m%s\n" "$alias_name" "$alias_command"
# color ^^^^^^^^^^ ^^^^^^^^^^
# minimum width ^^
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment