Swap dig with drill

This commit is contained in:
Anthony Rose 2022-02-23 10:19:18 +00:00
parent 5af6687861
commit d2ea7ed741
2 changed files with 7 additions and 1 deletions

View file

@ -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

View file

@ -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