4 Oct
2007
4 Oct
'07
8:28 p.m.
it comes from if diff filelist-old filelist | grep '\.so\.' > /dev/null 2>&1; then mkdir -p pkg cd pkg tar xzf ../$pkgfile > /dev/null <------- ??? for i in `diff ../filelist-old ../filelist | grep \> | grep \.so\. | awk '{print $2}'`; do echo -n "${i}: " objdump -p $i | grep SONAME done else echo "No filename differences" fi at the end of the script. isn't that one obsolete as it does simply nothing? Andy