Mercurial > mplayer.hg
view help/help_diff.sh @ 10645:558d0bc8354d
Windows hints as discussed on mplayer-cygwin
author | diego |
---|---|
date | Sun, 17 Aug 2003 18:10:42 +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