Shells that support process substitution such as bash and zsh allow to run shell script on gist as follows.
# With curl:
bash <(curl -sL ${GIST_URL}) args...
# With wget:| # This is Git's per-user configuration file. | |
| [user] | |
| name = Gyorgy Gutai | |
| email = | |
| [alias] | |
| l = log | |
| b = branch | |
| s = status | |
| c = checkout | |
| ci = !git checkout $(git branch -a | fzf | xargs) |
| alias {l,ll}="ls -lah" | |
| # start interactive | |
| alias si='$(mdfind "kMDItemUserTags == '\''Blue'\''" | fzf | xargs)' | |
| # cd interactive | |
| alias cdi='cd $(mdfind "kMDItemUserTags == '\''Purple'\''" | fzf | xargs)' | |
| # enable git autocomplete | |
| autoload -Uz compinit && compinit |