view help/help_diff.sh @ 10643:ec69923456d1

Fix '- loop' to '-loop' option into example
author nauj27
date Sun, 17 Aug 2003 14:09:27 +0000
parents 7938ee85f355
children 96170748b6a9
line wrap: on
line source

#!/bin/sh

# This script compares a translated help file to the master file and prints
# out any missing messages.  Needs the language code as parameter ($1).
#
# Example: help_diff.sh hu

exec < help_mp-en.h

while read line; do
	if echo "$line" | grep '^#define' > /dev/null 2>&1; then
		curr=`echo "$line" | cut -d ' ' -f 2`
		if grep "^#define $curr" help_mp-$1.h > /dev/null 2>&1; then
			true
		else
			echo "$line"
		fi
	fi
done