When developing on Android, I sometimes miss some asserts in the console (logcat), so I would like to be notified whenever an "Assert" message comes in the logcat, with a "growl" notification for example (I'm on Mac OS X).
I tried this simple command:
adb logcat | grep Assert | growlnotify
but it does not send any notification until I kill the logcat process.
Any ideas?