String start with ABC

Hi,

How to find out the words starting with ABC in a file (K shell)

I dont want the word having ABC in middle of any string.

Thanks
Subrat

use a word boundary such as:

grep "\<ABC" filename