Swap dig with drill
This commit is contained in:
parent
5af6687861
commit
d2ea7ed741
2 changed files with 7 additions and 1 deletions
|
@ -24,7 +24,6 @@
|
|||
- asciidoctor
|
||||
- aspell-en
|
||||
- bc
|
||||
- bind-utils
|
||||
- clang
|
||||
- clang-tools-extra
|
||||
- cmake
|
||||
|
@ -32,6 +31,7 @@
|
|||
- fossil
|
||||
- git
|
||||
- gnupg
|
||||
- ldns-utils
|
||||
- lldb
|
||||
- mc
|
||||
- nmap
|
||||
|
|
|
@ -117,6 +117,12 @@ then
|
|||
alias vi=vim
|
||||
fi
|
||||
|
||||
# Alias dig to drill if dig is not installed.
|
||||
if [ -x /usr/bin/drill ] && ! [ -x /usr/bin/dig ]
|
||||
then
|
||||
alias dig=drill
|
||||
fi
|
||||
|
||||
# Set up Go.
|
||||
if [ -x "$HOME/opt/go/bin/go" ] || [ -x /usr/bin/go ] || [ -x /usr/local/bin/go ]
|
||||
then
|
||||
|
|
Loading…
Reference in a new issue