我将系统从Nagios 2升级到Nagios 3,现在我正在比较旧配置文件和新配置文件中的一些差异。
配置文件有重大更改,我不想对整个文件进行差异化处理,因为vimdiff向我显示了太多无关紧要的差异,并且#
在行首等处难以处理注释等。
我可以使用vim或类似vimdiff的功能对两个不同文件中的两个特定部分执行比较吗?
例如,我只想比较看起来像这样的行:
# Define a service to check the load on the local machine.
define service{
use local-service ; Name of service template to use
host_name localhost
service_description Blah Blah
check_command Blah Blah
}
\nr
办?