grep

Grepping in bash

This option will search in the filename for two occurances of character “e” ls | grep "e\{2\}" This option will search in the filename for whitespace characters including tabs, pagebreaks, space and others. ls | grep "\s" Use a plus modifier to look for more than one occurances.