This awk one-liner should do the trick: { sub(/ word.*/, ""); print } For every line, if the line contains a pattern that starts with word (proceeded by space) and goes to the end of the line - replace the pattern with the empty string - then print the updated line.
[ Figured the question could read either way (whole text on that line or whole text in the file). If one wanted to skip the rest of the file one could: { skip = gsub(/ word.*/, ""); print ; if (skip) exit } ]
