I have a shared object that does some printf()s via attribute for init; Pretty simple. It just informs me of some variables I have set.
When I do LD_PRELOAD=mylib.so ./program.sh -flags the program.sh spits out errors due to the printfs:
./program_run: line 16: cd: mylib.so: Startup
.: File name too long
./program_run: line 18: test: too many arguments
Then the program normally starts up. It looks like the bash script is being corrupted with the printf()s when it does checking of variables.
Is there a workaround?
stderrinstead ofstdout. Many commands in bash scripts usestdoutand you cannot just add random text to them. – Banthar Oct 27 '11 at 10:13