I've got two snmpd.conf files, one on a server that works, and one that doesn't. How can I diff the two config files while stripping out irrelevant comments and newlines?
-
1Watch out jldugger! You're about to `level`! =) – Xerxes May 29 '09 at 06:58
-
It is really a bad idea to strip comments, how do you know they are irrelevant without looking at them? – AnonymousLurker Oct 10 '12 at 12:29
11 Answers
If you are somewhat comfortable with vim, I would strongly encourage you to use vimdiff:
vimdiff file1 file2
This will open a vim session with two panes, with one file on each side. Highlights and color will indicate differences between the files, and all identical parts will be hidden (folded, but expandable).
Then, if you want to selectively merge differences from one file to the other, you can use the following commands:
(Consider the "current file" to be the one where the cursor is)
^W^W to change focus from one file's window to the other file's window
]c to advance to the next block with differences
[c to reverse search for the previous block with differences
do (diff obtain) to bring changes from the other file to the current file
dp (diff put) to send changes from the current file to the other file
Note: Both do and dp work if you are on a block or just one line under a block.
u to undo
zo to unfold/un-hide text
zc to re-fold/re-hide text
zr will unfold both files completely (use :help fold for more about folding )
:diffupdate will re-scan the files for changes
As you start moving changed text over or bringing changes in, the now-identical parts of the files will automatically fold, too.
When you are finished, you can quit and write both files with :xa!
You can also write, quit, discard changes, etc., one pane at a time just as you would normally do with vim.
You can use all the common vim commands to edit the files at will ; I've only described the most common and useful commands you're likely to use in a vimdiff session (as opposed to a generic vim one).
diff <(grep -v '^#' f1) <(grep -v '^#' f2)
To avoid blank lines, and lines containing nothing but spaces, in addition to identical lines that have a single difference of added leading spaces...
diff -b \
<(grep -vE '^([ \t]*#|^[ \t]*$)' f1)\
<(grep -vE '^([ \t]*#|^[ \t]*$)' f2)
By this point though, I'd probably put that into a script and write something like the original suggestion that's a little more readable.
- 4,133
- 3
- 26
- 33
-
-
Any ideas on how to omit lines containing whitespace as well? Turns out once you cut out comments there's lots of blank lines spacing them out. – jldugger May 29 '09 at 19:43
-
@jldugger, try updating the grep to be like this to exclude comments and whitespace. - egrep -v '^(#.*|)$' – Zoredache May 29 '09 at 23:35
Beyond Compare is the ultimate tool for this!
Link: http://www.scootersoftware.com/
Available for Windows and Linux.
Jeff wrote a good overview article about the tool awhile back:
http://www.codinghorror.com/blog/archives/000454.html
- 200
- 7
- 13
-
-
-
Beyond Compare 3 does not run as a console application on Linux. It requires X-Windows. Supported Linux distributions (32-bit) Red Hat Enterprise Linux 4, 5 Fedora 4 - 10 Novell Suse Linux Enterprise Desktop 10 openSUSE 10.3, 11 Ubuntu 6.06 - 8.10 Not Tested Any 64-bit Linux kernel Not Compatible Red Hat Enterprise Linux 3 – Mark Norgren May 29 '09 at 13:19
-
I couldn't live without this tool anymore! An extreme time saver. When I changed from PC to Mac about 1 year ago I was very happy to find that it had just been ported to Mac too. – Jpsy Mar 27 '15 at 15:22
Expanding on nima's one-liner, you could do that as a shell function and drop it in your .bashrc
diff <(grep -v '^#' f1) <(grep -v '^#' f2)
becomes (using -u because I like unified diffs)
function cleandiff {
diff -u <(grep -v '^#' $1| grep -v '^ *$') <(grep -v '^#' $2 | grep -v '^ *$')
}
If you like GUI diff viewers, meld is nice, and understands revision controlled dirs/files.
- 487
- 4
- 8
-
+1 for meld, which has made graphical diff'ing sooo much more easy. – Avery Payne May 29 '09 at 20:10
After cleaning the comments, I would advise using KDiff3, it's a pretty good diff/merge tool and you dont need vim fu to use it :)
There might be a more elegant way to do it, but pragmatically (and quickly):
grep -v '^#' server1-snmpd.conf | grep -v '^ *$' > server1-snmpd.conf-clean
grep -v '^#' server2-snmpd.conf | grep -v '^ *$' > server2-snmpd.conf-clean
diff server1-snmpd.conf-clean server2-snmpd.conf-clean
- 11,038
- 1
- 36
- 50
If you're using a bash-like shell, you can try this:
# Name this diff-stripped
STRIPPED=
for i in $*; do
egrep -v "^#|^\s*" "$i" > "$i.stripped"
STRIPPED="$STRIPPED $i.stripped"
done
diff $STRIPPED
Then invoke it like this:
diff-stripped file1 file2 ...
You can also change diff
to vimdiff
or gvimdiff
which both come with vim
.
- 2,345
- 8
- 35
- 44
Extending Xerxes' solution, you can use more sophisticated tools than diff
for displaying the differences.
wdiff
wdiff
can be "too smart" at times, but I find it often useful for taking a quick glance at differences between configuration files. This script can be used for output with colors:
#!/bin/bash
RED=$'\e'"[1;31m"
GREEN=$'\e'"[1;32m"
RESET=$'\e'"[0m"
WDIFF_ARGS="-w$RED -x$RESET -y$GREEN -z$RESET --avoid-wraps"
wdiff $WDIFF_ARGS \
<(grep -vE '^([ \t]*#|^[ \t]*$)' $1) \
<(grep -vE '^([ \t]*#|^[ \t]*$)' $2) \
| less -R
On Ubuntu and other Debian-based systems, just apt-get install wdiff
before using this script.
Meld
Meld is a nice GUI alternative, but its "Text filtering" feature has some issues. Instead of using text filtering, I remove comments altogether before showing the results in Meld. The drawback is losing the ability to edit the files while comparing them. Here's a simple script for using Meld:
#!/bin/bash
meld <(grep -vE '^([ \t]*#|^[ \t]*$)' $1) \
<(grep -vE '^([ \t]*#|^[ \t]*$)' $2)
Sometimes, several additional common lines can be stripped of by sorting files prior to the diff, so I would add to what already written the following:
diff <(grep -v '^#' f1 | sort) <(grep -v '^#' f2 | sort)
this of course makes sense for files where lines' order does not effects it's content (so be aware).
- 211
- 2
- 2
This is the same as nima's one liner, but will filter out blank lines too as somebody requested.
diff -u <(egrep -v '^(#| *$)' f1) <(egrep -v '^(#| *$)' f2)
(I'd also install colordiff if possible and use that in place of normal diff)
- 2,846
- 19
- 13
I use WinMerge http://winmerge.org to diff files, granted I have to pull them down to my machine, but it works for.
- 698
- 6
- 13