Hi everyone. I'm having trouble using these commands to their full extent. Here is my problem:
I'm dumping a log to the terminal and only want a specific set of lines that start withBut I want these lines without that junk in front of it. To display only the parts I want, I'm doing the log command piped with grep and sedCode:V/ CONTENT ( [some number]):
This leaves me with V/(stuff I want). I'm just not sure how to sed the V/ part out of it because in the sed command '/' symbols are used to separate fields. Anybody have an idea? :DCode:./adb logcat | grep CONTENT | sed -e 's/CONTENT ( [some number]):/ /g'

