1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-05-07 07:05:18 +02:00
libunwind-eh_elf/scripts/kernel-diff.sh
2006-07-26 15:46:15 -06:00

11 lines
234 B
Bash
Executable file

kdir=${1:-../kernel}
scriptdir=$(dirname $0)
udir=$(dirname $scriptdir)
cat $scriptdir/kernel-files.txt | \
(while read l r; do
left=$(eval echo $l)
right=$(eval echo $r)
# echo $left $right
diff -up $left $right
done)