Last change
on this file since 2657 was 1237, checked in by Bruno Cornec, 18 years ago |
- Include modifications from 2.2.2 in ChangeLogs file
- fix typo in HOWTO
- adds mmeld as a tool
|
-
Property svn:executable
set to
*
|
File size:
306 bytes
|
Line | |
---|
1 | #!/bin/bash
|
---|
2 |
|
---|
3 | dname=`dirname $0`
|
---|
4 | prem=`echo $dname |cut -c1`
|
---|
5 | if [ _${prem} = _"/" ]; then
|
---|
6 | export TOOLHOME=$dname
|
---|
7 | else
|
---|
8 | export TOOLHOME=${PWD}/$dname
|
---|
9 | fi
|
---|
10 |
|
---|
11 | v1=$1
|
---|
12 | shift
|
---|
13 | v2=$1
|
---|
14 | shift
|
---|
15 |
|
---|
16 | cd $TOOLHOME/..
|
---|
17 | for i in `find . -name "$1" -type f`; do
|
---|
18 | meld $TOOLHOME/../../$v1/$i $TOOLHOME/../../$v2/$i
|
---|
19 | done
|
---|
Note:
See
TracBrowser
for help on using the repository browser.