On February 18, 2004 11:28 pm, Trevor Smith wrote: > can NOT figure out how to use a regex to search for multiple spaces -- for Sorry, I figured it out. grep ' {1,}' filename does not work grep ' \{1,\}' filename does work. I was forgetting to escape the { and } characters. -- Trevor Smith | trevor@xxxxxxxxxxxxxx