view help/help_diff.sh @ 17098:0b6c9d7387b4

fix ps_dec.c:1938: warning: missing braces around initializer ps_dec.c:1938: warning: (near initialization for 'X_hybrid_left[0][0]') ps_dec.c:1939: warning: missing braces around initializer ps_dec.c:1939: warning: (near initialization for 'X_hybrid_right[0][0]') sbr_dec.c:530: warning: missing braces around initializer sbr_dec.c:530: warning: (near initialization for 'X_left[0][0]') sbr_dec.c:531: warning: missing braces around initializer sbr_dec.c:531: warning: (near initialization for 'X_right[0][0]')
author rathann
date Mon, 05 Dec 2005 01:31:53 +0000
parents c90a84da69f1
children 3fb0eb698ce8
line wrap: on
line source

#!/bin/sh

# This script walks through the master (stdin) help/message file, and
# prints (stdout) only those messages which are missing from the help
# file given as parameter ($1).
#
# Example: help_diff.sh help_mp-hu.h < help_mp-en.h > missing.h

curr=""

while read -r line; do
	if echo "$line" | grep '^#define' > /dev/null 2>&1; then
		curr=`echo "$line" | cut -d ' ' -f 2`
		if grep "^#define $curr[	 ]" $1 > /dev/null 2>&1; then
			curr=""
		fi
	else
		if [ -z "$line" ]; then
			curr=""
		fi
	fi

	if [ -n "$curr" ]; then
		echo "$line"
	fi
done