8 lines
143 B
Bash
Executable file
8 lines
143 B
Bash
Executable file
#!/bin/sh
|
|
|
|
for NR in `ls patches`; do
|
|
if [ -d target/SF${NR} ]; then
|
|
diff -r -x*.pyc -u ori/${NR}/ target/SF${NR} > patches/${NR}
|
|
fi
|
|
done
|
|
|