summaryrefslogtreecommitdiffstats
path: root/misc/grc/grc.zsh
diff options
context:
space:
mode:
author Edinaldo P. Silva <edps.mundognu@gmail.com>2017-01-28 23:08:35 +0000
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2017-02-04 06:59:27 +0700
commitc2b699753b0b54302791a822751d6c62cf0febed (patch)
treed1fb479c4b2fda626d0a40ddfba464568fb17c23 /misc/grc/grc.zsh
parent336e4c2d0d5c93a96b02a7785a52d80f85ad3a54 (diff)
downloadslackbuilds-c2b699753b0b54302791a822751d6c62cf0febed.tar.gz
slackbuilds-c2b699753b0b54302791a822751d6c62cf0febed.tar.xz
misc/grc: Updated for version 1.10.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to '')
-rw-r--r--misc/grc/grc.zsh40
1 files changed, 0 insertions, 40 deletions
diff --git a/misc/grc/grc.zsh b/misc/grc/grc.zsh
deleted file mode 100644
index f02db3ab83..0000000000
--- a/misc/grc/grc.zsh
+++ /dev/null
@@ -1,40 +0,0 @@
-if [[ "$TERM" != dumb ]] && (( $+commands[grc] )) ; then
- # Prevent grc aliases from overriding zsh completions.
- setopt COMPLETE_ALIASES
-
- # Supported commands
- cmds=(
- cc \
- configure \
- cvs \
- df \
- diff \
- dig \
- gcc \
- gmake \
- ifconfig \
- last \
- ldap \
- ls \
- make \
- mount \
- mtr \
- netstat \
- ping \
- ping6 \
- ps \
- traceroute \
- traceroute6 \
- wdiff \
- );
-
- # Set alias for available commands.
- for cmd in $cmds ; do
- if (( $+commands[$cmd] )) ; then
- alias $cmd="grc --colour=auto $cmd"
- fi
- done
-
- # Clean up variables
- unset cmds cmd
-fi