source: MondoRescue/branches/stable/tools/mmeld@ 1334

Last change on this file since 1334 was 1237, checked in by Bruno Cornec, 17 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
3dname=`dirname $0`
4prem=`echo $dname |cut -c1`
5if [ _${prem} = _"/" ]; then
6 export TOOLHOME=$dname
7else
8 export TOOLHOME=${PWD}/$dname
9fi
10
11v1=$1
12shift
13v2=$1
14shift
15
16cd $TOOLHOME/..
17for i in `find . -name "$1" -type f`; do
18 meld $TOOLHOME/../../$v1/$i $TOOLHOME/../../$v2/$i
19done
Note: See TracBrowser for help on using the repository browser.