I need a grep command that finds all lines that only contain words with lengths greater than 10.
this is the grep I wrote to find words bigger than 10 characters.
grep -E '(\w{11,})' input How would I manipulate this command to include every word on the line?