%header_diff [-i {ignore_list_filename}]
[-comments off]
[-case off]
[-tolerance {value}]
{baseline_directory_path}
"{wildcarded_list_of_headers}"
Inputs
That file will have one capitalized keyword per line.
While this is primarily a unix tool, it can be run in a VMS environment. The difference is that the VMS shell will not expand the wildcarded filename to a list of files. Consequently you will have to use a command file like this:
$!=============================================================================
$!
$! Usage:
$! $define binaxp disk$leo:[leo.rose.bin.axp_vms] (for now)
$! $define old disk$cmtest2:[opus100.regout.pass7.pipeline_keep]
$! $define new disk$cmtest2:[opus101.regout.pass8.pipeline_keep]
$! $@header_diff old: new:x*.jit_lis
$!
$!=============================================================================
$ header_diff := "$binaxp:header_diff"
$nextfile:
$ file = f$search(''p2'')
$ if file .eqs. "" then exit
$ header_diff 'p1' 'file'
$ goto nextfile
$ exit