this is iPhone development on MacOS question, I am using 'waxsim' to start my iphone app on simulator. like this:
/usr/local/bin/waxsim /Users/me/Desktop/app/build/Release-iphonesimulator/app.app
Inside my app I use printf(), and I cat see the printf messages printed in console.
But I cannot get them into the file or filter with grep! I try everything that normally works:
cmd | grep "x"
all messages are printed but not through the grep
cmd > myfile
all messages still go to console, nothing to the file
cmd &> myfile
This command does not print anything to console! But myfile only contains this:
Launching '/Users/me/Desktop/app/build/Release-iphonesimulator/app.app' on'Simulator - iOS 6.0'
but not the actual messages printed with printf
cmd 2>&1 > myfile
with this one just everything goes to console, nothing to the file.
I think waxsim does some tricks with pipes?