Ever try to find a file with a particular character starting a line.
Try this..
grep -H -r ‘^W’ *.*
This will print out the file and the text of the line that matches your regular expression. In this case ^W means lines starting with a capitol W.
Ever try to find a file with a particular character starting a line.
Try this..
grep -H -r ‘^W’ *.*
This will print out the file and the text of the line that matches your regular expression. In this case ^W means lines starting with a capitol W.