2008/2/2, Martin Guy <[EMAIL PROTECTED]>: > Well, it;s a warty hack, but you could, as root, "ln -s dev/null /null" > then use a binary editor on the .so file to overwrite > >&/dev/null > with > >/null 2>&1
In fact, on this system (GNU sed version 4.1.5) # cd /usr/local/lib/transcode # sed 's:>&/dev/null:>/null 2>\&1:' < export_mp2.so > foo does it. I'd check that the files have the same length and check with cmp -l export_mp2.so foo that there are exactly 10 characters' difference before replacing the original file. M