Results 1 to 1 of 1
I am trying to find the following line in a file:
$config['license_number'] = "9375039829423";
When I use the following grep I just get a > prompt after hitting return.
grep ...
- 02-21-2011 #1Just Joined!
- Join Date
- Nov 2006
- Posts
- 11
grep giving confusing results
I am trying to find the following line in a file:
When I use the following grep I just get a > prompt after hitting return.$config['license_number'] = "9375039829423";
It seems that when I add the backslash it starts doing this. What's up?grep -lr '\$config\[\'license_number\'\] = ".*";' /home/user/public_html


Reply With Quote