mirror of
https://github.com/mpv-player/mpv
synced 2025-01-11 17:39:38 +00:00
shorter, sweeter, more portable, better calling syntax
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10637 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
885a331074
commit
8b653cc824
@ -1,28 +1,19 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# This script walks through the master (stdin) help/message file, and
|
# This script compares a translated help file to the master file and prints
|
||||||
# prints (stdout) only those messages which are missing from the help
|
# out any missing messages. Needs the language code as parameter ($1).
|
||||||
# file given 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
|
while read line; do
|
||||||
if echo "$line" | grep -q '^#define'; then
|
if echo "$line" | grep '^#define' > /dev/null 2>&1; then
|
||||||
curr=`echo "$line" | cut -d ' ' -f 2`
|
curr=`echo "$line" | cut -d ' ' -f 2`
|
||||||
if grep -q "^#define $curr " $1; then
|
if grep "^#define $curr" help_mp-$1.h > /dev/null 2>&1; then
|
||||||
curr=""
|
true
|
||||||
|
else
|
||||||
|
echo "$line"
|
||||||
fi
|
fi
|
||||||
else
|
|
||||||
if [ -z "$line" ]; then
|
|
||||||
curr=""
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -n "$curr" ]; then
|
|
||||||
echo "$line"
|
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user