Created
November 19, 2024 22:23
-
-
Save MrTechGadget/3e890d189905394ee87bfdba71dd740a to your computer and use it in GitHub Desktop.
Terminal Aliases
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dag() { | |
domain=$1 | |
echo "External 8.8.8.8" | |
dig @8.8.8.8 +noall +answer $domain | |
echo "Internal" | |
dig +noall +answer $domain | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment