0

I wanted to search for this particular string secure="false" in my folder. But when I use a normal grep function grep -r "secure="false"" it gives me no results.

1
  • Try grep -iFr 'secure="false"' . Commented Apr 1, 2020 at 10:53

1 Answer 1

1

You need to escape your string: grep -r "secure=\"false\""

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.