Check program exists before adding grc alias
This commit is contained in:
parent
b964dfb23f
commit
27f641996d
1 changed files with 4 additions and 2 deletions
|
@ -289,8 +289,10 @@ alias anboxPrepare='sudo modprobe -a binder && sudo mkdir /dev/binderfs && sudo
|
|||
|
||||
if type grc > /dev/null 2>&1; then
|
||||
for cmd in "nmap" "ping" "traceroute" "mount" "netstat" "ps" "dig" "du" "df" "ip" "iptables" "lsblk" "id" "free" "tcpdump" "uptime" "showmount" "whois" ; do
|
||||
if type -p "$cmd" > /dev/null; then
|
||||
alias "$cmd"="grc $(whence $cmd)"
|
||||
alias "${cmd}c"="grc --colour=on $(whence $cmd)"
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue