update README for 43.05
[rofl0r-df-mayday.git] / utils / makediff.sh
blob979021f51b259f334bd65fda951e0a59e976760b
1 #!/usr/bin/env bash
2 # use this on a backup copy of actual DF and a MAYDAYed Df
3 # contents will be trashed !
4 THIS=`dirname $0`
5 ORG=$1
6 MAYDAY=$2
7 if [ -z "$ORG" ] || [ -z "$MAYDAY" ] ; then
8 echo syntax: $0 df_path/ dfg_path/
9 exit 1
11 $THIS/clean.sh $ORG
12 $THIS/clean.sh $MAYDAY
13 diff -r -C1 --exclude=language* -w -B -E $ORG $MAYDAY > mayday.diff