When I do: drush sql-dump > somewhere/database.sql
if there will be any warnings printed by Drush, they will be included at the beginning of the created database.sql file. Can we avoid it somehow?
I know there is the --result-file=
option that ignores all warnings when creating the file, but is there any way to ignore warnings when piping the output? I would like to parse the output before actually saving it into a file if its possible.
drush 8