Is there a tool that we can pass the output of the standard 'diff'
utility as input and then view it side-by-side as in, for example,
tkdiff?
In other words, I want to do something like this.
$ diff file1 file2 > report
$ some_diff_viewer --input_file=report
The requirement is to generate "diff" reports and store them for
possible later inspection using a visual tool. The broader requirement
is tracking changes to a source repository.
tkdiff, WinMerge etc. don't seem to support such an option. I'm
looking for a 'nix or web-based utility.
Thanks,
Ishan.
>Is there a tool that we can pass the output of the standard 'diff'
>utility as input and then view it side-by-side as in, for example,
>tkdiff?
This may not enthuse non-vi users, but I frequently use vimdiff:
http://www.vim.org/htmldoc/diff.html
I'm sure there'll be some 'competing' emacs product, as well.
--
Chris.