Blame | Letzte Änderung | Log anzeigen | RSS feed
#!/bin/bash# sync the test directories DB, MDB2, ADOdbDefault, ADOdbException & ADOdbPEAR# treating MDB2 as the mastercd `dirname $0` || exit 1./diffTests_MDB2Master.sh | grep 'diff -ruN' | awk '{print $9 " " $10}' | \while read SRC DST;doecho syncing $DSTcat $SRC > $DST;done