Veja o que eu criei:
awk '
/END_OF_LINE/{ matched = 1} # When you find END_OF_LINE set the matched flag
{
if( matched == 0) # If you haven't matched END_OF_LINE yet
print $4" "$5" "$6 # ...print the required fields
else # If you have already found END_OF_OLINE
print $0 # ...print the whole line
}' your_file
mas eu não sou um cara awk
: tenho certeza que isso pode ser melhor simplificado.