diff options
author | jan iversen <jani@documentfoundation.org> | 2016-04-04 19:37:01 +0200 |
---|---|---|
committer | jan iversen <jani@documentfoundation.org> | 2016-04-04 19:37:01 +0200 |
commit | 2ef9d5de7df7b38e091af7bd7276e68812493cc0 (patch) | |
tree | 2e87eee8dde58034985a96ff2004fed934ec8e01 /l10ntools/source/gDiff.sh | |
parent | 3ada44f631490f8910ce0bcf55353f70d7d0df6d (diff) |
genlang, update to satisfy clang.
changes due a log from clang tinderbox.
minor changes to interpret more files
Change-Id: I3821aab91dc21e74c870628a4f2265ab61d37cca
Diffstat (limited to 'l10ntools/source/gDiff.sh')
-rwxr-xr-x | l10ntools/source/gDiff.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/l10ntools/source/gDiff.sh b/l10ntools/source/gDiff.sh new file mode 100755 index 000000000000..56c0dbd4e0e2 --- /dev/null +++ b/l10ntools/source/gDiff.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +cd workdir/jan +for i in `find . -name \*.pot` +do + echo ">>>>>>>> " $i + diff ../pot/$i $i | sed '/^6c6$/,/^16c16$/d' +done + |