This repository has been archived on 2024-10-17. You can view files and clone it, but cannot push or open issues or pull requests.
MahiroOS-jhalfs/extras/do_ica_work
Manuel Canales Esparcia 6753ff7f44 Added do_ica_work code.
2006-04-09 17:29:45 +00:00

35 lines
818 B
Bash
Executable file

#!/bin/bash
# $Id$
# Acknowledgment:
# The following code is a modified version of an original work written by
# Greg Schafer for the "DIY Linux" project and is included here with his
# permission.
# ref: http://www.diy-linux.org
#
set -e
local RAWDIFF=/tmp/rawdiff.$$
local REPORT="${3}/REPORT.${1}V${2}"
cd $4
echo -e "Diffing ${1} and ${2}... " > $REPORT
diff -ur ${1} ${2} > $RAWDIFF || :
echo -e "The list of binary files that differ:\n" > $REPORT
grep "iles.*differ$" $RAWDIFF >> $REPORT
echo -e "The list of files that exist \"only in\" 1 of the directories:\n" >> $REPORT
if grep "^Only in" $RAWDIFF >/dev/null 2>&1; then
grep "^Only in" $RAWDIFF >> $REPORT
else
echo NONE >> $REPORT
fi
grep -v "iles.*differ$" $RAWDIFF | \
grep -v "^Only in" > ${ICA_DIR}/${1}V${2}.ASCII.DIFF
rm -f $RAWDIFF