2
0
mirror of https://github.com/garabik/grc.git synced 2024-09-18 17:31:29 +02:00
bash-color-grc/grc.zsh

44 lines
632 B
Bash
Raw Normal View History

2015-10-10 16:35:08 +02:00
if [[ "$TERM" != dumb ]] && (( $+commands[grc] )) ; then
# Supported commands
cmds=(
cc \
configure \
cvs \
df \
diff \
dig \
docker \
docker-compose \
docker-machine \
2015-10-10 16:35:08 +02:00
gcc \
gmake \
ifconfig \
last \
ldap \
ls \
make \
mount \
mtr \
netstat \
ping \
ping6 \
ps \
traceroute \
traceroute6 \
wdiff \
2018-01-06 13:04:34 +01:00
whois \
iwconfig \
2015-10-10 16:35:08 +02:00
);
# Set alias for available commands.
for cmd in $cmds ; do
if (( $+commands[$cmd] )) ; then
alias $cmd="grc $(whence $cmd)"
2015-10-10 16:35:08 +02:00
fi
done
# Clean up variables
unset cmds cmd
fi