So far I have:
cat FileName | tr -s '[a-z]' '[A-Z]'
but I cannot figure out how to remove a string, in my case between 4 and 8 characters long. I think I need to use sed
but I only see ways of removing particular strings, or the beginning or the end of a string - not strings between X and Y length.
Does anyone know how to accomplish this?