Sophie

Sophie

distrib > Mandriva > current > x86_64 > by-pkgid > 9d70214adc1436f851b829e058769c88 > files > 33

lib64edit-devel-3.0-0.20090923.1mdv2010.1.x86_64.rpm

#!/bin/bash

## make new patches after e.g. distributed ../src has been changed

rm *.patch

i=0
for file in $(find export -type f)
do
   diff -q $file ../${file#export/} > /dev/null
   res="$?"
   if test 1 -eq "$res"
   then
      diff -au $file ../${file#export/} > $(printf '%02d' $i)-${file##*/}.patch
      ((i++))
   fi
done