Re: how to find a specific string in a text file

2003-01-07 Thread Anurag
On Wednesday 08 Jan 2003 7:52 am, Jianping Zhu wrote: how to find a specific string say "adrf" in a text file myfile. i should use grep, but i do not remember. Thanks grep -i ardf or * for all files in current working directory (-i for case insensitive) -- redhat-list mailing list unsubscr

Re: how to find a specific string in a text file

2003-01-07 Thread Todd A. Jacobs
On Tue, 7 Jan 2003, Jianping Zhu wrote: > how to find a specific string say "adrf" in a text file myfile. > i should use grep, but i do not remember. Oh, come on...this is just lazy. Try "man grep" before posting this sort of thing, especially if you already know the tool to use. But just in ca