[Mplayer-cvslog] CVS: main/help help_diff.sh,1.6,1.7

Diego Biurrun CVS diego at mplayerhq.hu
Sun Aug 17 03:21:11 CEST 2003


Update of /cvsroot/mplayer/main/help
In directory mail:/var/tmp.root/cvs-serv16542

Modified Files:
	help_diff.sh 
Log Message:
shorter, sweeter, more portable, better calling syntax


Index: help_diff.sh
===================================================================
RCS file: /cvsroot/mplayer/main/help/help_diff.sh,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- help_diff.sh	3 Jan 2003 12:14:34 -0000	1.6
+++ help_diff.sh	17 Aug 2003 01:20:48 -0000	1.7
@@ -1,28 +1,19 @@
 #!/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).
+# 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 help_mp-hu.h < help_mp-en.h > missing.h
+# Example: help_diff.sh hu
 
-curr=""
+exec < help_mp-en.h
 
-while read -r line; do
-	if echo "$line" | grep -q '^#define'; then
+while read line; do
+	if echo "$line" | grep '^#define' > /dev/null 2>&1; then
 		curr=`echo "$line" | cut -d ' ' -f 2`
-		if grep -q "^#define $curr " $1; then
-			curr=""
+		if grep "^#define $curr" help_mp-$1.h > /dev/null 2>&1; then
+			true
+		else
+			echo "$line"
 		fi
-	else
-		if [ -z "$line" ]; then
-			curr=""
-		fi
-	fi
-
-	if [ -n "$curr" ]; then
-		echo "$line"
 	fi
 done
-
-



More information about the MPlayer-cvslog mailing list