Skip to content

Instantly share code, notes, and snippets.

@Integralist
Last active March 12, 2025 16:32
Show Gist options
  • Save Integralist/49d86970ed78cfaddfffc59754ce6c4b to your computer and use it in GitHub Desktop.
Save Integralist/49d86970ed78cfaddfffc59754ce6c4b to your computer and use it in GitHub Desktop.
Improving dig output #dns #dig #bash #shell

Outcome

Screenshot 2025-03-12 at 16 31 37

Implementation

# digg adds colors to the standard dig output to improve readability while not losing contextual information.
#
DIG_COMMENT_COLOR_SINGLE="\e[38;5;8m"  # Dark grey text, no background, no bold
DIG_COMMENT_COLOR_DOUBLE="\e[48;5;88m\e[1;37m" # Dark red background, bold white text
DIG_RESET_COLOR="\e[0m"
digg() {
	local domain="$1"
	local record="${2:-A}"
	local dig_output=$(dig "$domain" "$record")
	local question_section_found=0

	while IFS= read -r line; do
		if [[ "$line" == ";"* ]]; then
			if [[ "$line" == ";;"* ]]; then
				if [[ "$line" == *' SECTION:'* ]]; then
					if [[ "$line" == *'QUESTION SECTION:'* ]]; then
						question_section_found=1;
						echo ""
					fi
					echo -e "${DIG_COMMENT_COLOR_DOUBLE}${line#';;'} ${DIG_RESET_COLOR}"
				else
					echo -e "${DIG_COMMENT_COLOR_SINGLE}${line#';;'} ${DIG_RESET_COLOR}"
				fi
			else
				if [[ "$question_section_found" -eq 1 ]]; then
					echo "${line#';'}";
					question_section_found=0;
				else
					echo -e "${DIG_COMMENT_COLOR_SINGLE}${line#';'}${DIG_RESET_COLOR}"
				fi
			fi
		else
			echo "$line";
		fi
	done <<< "$dig_output"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment