Create named-checkzone Function

Put this at the end of your .bashrc function cz { zonefile=$1 zone=$(basename $zonefile .zone) named-checkzone $zone $zonefile } Then you will be able to use cz to check you zone files. Example: cbrown$ cz...

Compare Files with DiffMerge

I came across a handy little application called DiffMerge that allows you to compare multiple files and make changes while open.  This is extremely useful when comparing multiple MikroTik configuration files.  Previously I used sdiff, but I think this is much easier...

Compare Directories and Files with Diff

Sometimes working with a directory full of subdirectories and files you need to compare the directories and files to another version of the files.  This comes in extremely useful when restoring a hacked website.  To do this you need to have the old copy and the...