I’m trying to filter the following, but the double quotationmarks are confusing me.
(load "")
the code I have so far is:
find /v ""(load "")" < C:\acadlsip.txt | find /v ""(load "")" > acad.lsp
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Using a file (
thing.txt) with the following content:I ran the following command:
and got this output:
Which I guess what you are looking for. The thing to remember here is that entering
""(two quotes) in the middle of the string is interpreted (in this context) as a single quote.I will also mention that you don’t need to run the same find twice in order to pipe the output to another file. You can instead use this: