Anyone know a diff program that you can skip # lines at the beginning of each files? Googling for diff is about worthless...
Pipe trough tail. 'tail -n +#' outputs everything from the #th line to the last, so 'tail -n ## | diff' (where ## = # + 1) does what you want).
-- "Codito ergo sum" Roel Schroeven
-- [EMAIL PROTECTED] mailing list
