~jfi/psensor/0.6.2.x

« back to all changes in this revision

Viewing changes to scripts/merge_tr_lp.sh

  • Committer: jporsini
  • Date: 2012-08-11 08:52:19 UTC
  • Revision ID: svn-v4:150fdd79-9831-44f0-b659-6bc0400daafd:psensor/branches/v0.6.2.x:861
added po merge script

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
SDIR=`dirname $0`
 
4
 
 
5
(cd /tmp;tar -xzvf $1)
 
6
 
 
7
cd $SDIR/../po
 
8
for i in *po
 
9
do
 
10
    meld $i /tmp/po/psensor-$i
 
11
done
 
12