Hi,

        What is the correct regular expression for a simple $ character? I want to 
filter a file for any lines containing a $ char, but it does not work..

        man grep tells me $ is a special regular expression char.. I try to escape it 
using \$ but it doesn't work..

grep $ someFile

grep \$ someFile

grep "\$" someFile

grep /$ someFile

nothing gives me the result expected!



--
[EMAIL PROTECTED] mailing list

Reply via email to