#!/bin/bash
# Author: Brendan Hide (http://swiftspirit.co.za/)
# Copyright: (c) Brendan Hide, released under the GPLv3 license
#            See http://www.gnu.org/licenses/gpl-3.0.html for the License details
# Name: dim
# Release Version: 0.1 (2009-05-08)
# TODO: --help
# Description: gives minimal dig results (no fluff)
# Special thanks to Nico Visser for the inspiration
# Yes, I think it is funny that, for now, this is a one-liner with 10 lines of comment

dig $* | grep . | grep -v "^;"
