What does sed '/DEBUG/d' raw_system.log emit?
sed '/DEBUG/d' raw_system.log
All lines, with only the word DEBUG removed from matching lines.
DEBUG
It deletes matching lines permanently from the source file.
Only the lines containing DEBUG.
Every input line except lines containing DEBUG.