Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
#!/bin/bash
2
 
3
# sync the test directories DB, MDB2, ADOdbDefault, ADOdbException & ADOdbPEAR
4
# treating MDB2 as the master
5
 
6
cd `dirname $0` || exit 1
7
 
8
./diffTests_MDB2Master.sh | grep 'diff -ruN' | awk '{print $9 " " $10}' | \
9
while read SRC DST;
10
do
11
	echo syncing $DST
12
	cat $SRC > $DST;
13
done