grep space and special characters from file [on hold]How do I correct both too many and too few space characters?Print the number of values which have the special characters in themMake grep work for special filenamesprinting special characters in awk outputRemoving special chars from file and maintain field separatorExtract characters from a serial portHow can I do a binary search of a text file for a specific character string?Remove special characters at end of row in unix fileGrep latest file for string and alert / email if foundLog file extract data and append back same line
Gears on left are inverse to gears on right?
Increase performance creating Mandelbrot set in python
Large drywall patch supports
Customer Requests (Sometimes) Drive Me Bonkers!
What happens if you roll doubles 3 times then land on "Go to jail?"
Do the temporary hit points from the Battlerager barbarian's Reckless Abandon stack if I make multiple attacks on my turn?
Roman Numeral Treatment of Suspensions
Is there a problem with hiding "forgot password" until it's needed?
I'm in charge of equipment buying but no one's ever happy with what I choose. How to fix this?
How can we prove that any integral in the set of non-elementary integrals cannot be expressed in the form of elementary functions?
Unreliable Magic - Is it worth it?
How did Arya survive the stabbing?
Why escape if the_content isnt?
Did the DC-9 ever use RATO in revenue service?
How to safely derail a train during transit?
Risk of infection at the gym?
How does the UK government determine the size of a mandate?
What does the word "Atten" mean?
Escape a backup date in a file name
What is paid subscription needed for in Mortal Kombat 11?
What is the intuitive meaning of having a linear relationship between the logs of two variables?
Are student evaluations of teaching assistants read by others in the faculty?
Why not increase contact surface when reentering the atmosphere?
What is the best translation for "slot" in the context of multiplayer video games?
grep space and special characters from file [on hold]
How do I correct both too many and too few space characters?Print the number of values which have the special characters in themMake grep work for special filenamesprinting special characters in awk outputRemoving special chars from file and maintain field separatorExtract characters from a serial portHow can I do a binary search of a text file for a specific character string?Remove special characters at end of row in unix fileGrep latest file for string and alert / email if foundLog file extract data and append back same line
I have a text file text which contains values as
1) Heartbleed (CVE-2014-0160) not vulnerable (OK), no heartbeat extension
2) Secure Renegotiation (CVE-2009-3555) VULNERABLE (NOT ok)
3) FREAK (CVE-2015-0204) not vulnerable (OK)
I need to search values from file which contains the "Secure Renegotiation (CVE-2009-3555) VULNERABLE (NOT ok)" string, but i am not able to do so.
this string contains special characters and spaces.
awk sed grep
put on hold as unclear what you're asking by Kusalananda♦, GAD3R, strugee, jimmij, muru 19 hours ago
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
I have a text file text which contains values as
1) Heartbleed (CVE-2014-0160) not vulnerable (OK), no heartbeat extension
2) Secure Renegotiation (CVE-2009-3555) VULNERABLE (NOT ok)
3) FREAK (CVE-2015-0204) not vulnerable (OK)
I need to search values from file which contains the "Secure Renegotiation (CVE-2009-3555) VULNERABLE (NOT ok)" string, but i am not able to do so.
this string contains special characters and spaces.
awk sed grep
put on hold as unclear what you're asking by Kusalananda♦, GAD3R, strugee, jimmij, muru 19 hours ago
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
1
Welcome to UNIX&Linux stack exchange. Please review the welcome and help center documentation, particularly how to ask a good question and consider re-phrasing your question if you still cannot find a solution.
– 0xSheepdog
yesterday
1
Are you aware that you can dogrep -F
to do plain string matching, not regular expressions? Check your grep man page.
– glenn jackman
yesterday
did you search for how to do this before asking here? I just searched for "how to search for strings in files" and the third search result provided exactly the answer you need (grep
). I see grep in the title and the tags but I'm unclear as to what problem you're actually having. did you actually trygrep
?
– strugee
yesterday
Consider giving testssl the --csvfile or --jsonfile options. They're a lot easier to parse.
– Mark Plotnick
yesterday
add a comment |
I have a text file text which contains values as
1) Heartbleed (CVE-2014-0160) not vulnerable (OK), no heartbeat extension
2) Secure Renegotiation (CVE-2009-3555) VULNERABLE (NOT ok)
3) FREAK (CVE-2015-0204) not vulnerable (OK)
I need to search values from file which contains the "Secure Renegotiation (CVE-2009-3555) VULNERABLE (NOT ok)" string, but i am not able to do so.
this string contains special characters and spaces.
awk sed grep
I have a text file text which contains values as
1) Heartbleed (CVE-2014-0160) not vulnerable (OK), no heartbeat extension
2) Secure Renegotiation (CVE-2009-3555) VULNERABLE (NOT ok)
3) FREAK (CVE-2015-0204) not vulnerable (OK)
I need to search values from file which contains the "Secure Renegotiation (CVE-2009-3555) VULNERABLE (NOT ok)" string, but i am not able to do so.
this string contains special characters and spaces.
awk sed grep
awk sed grep
edited yesterday
Rui F Ribeiro
41.8k1483142
41.8k1483142
asked yesterday
user334662user334662
12
12
put on hold as unclear what you're asking by Kusalananda♦, GAD3R, strugee, jimmij, muru 19 hours ago
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
put on hold as unclear what you're asking by Kusalananda♦, GAD3R, strugee, jimmij, muru 19 hours ago
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
1
Welcome to UNIX&Linux stack exchange. Please review the welcome and help center documentation, particularly how to ask a good question and consider re-phrasing your question if you still cannot find a solution.
– 0xSheepdog
yesterday
1
Are you aware that you can dogrep -F
to do plain string matching, not regular expressions? Check your grep man page.
– glenn jackman
yesterday
did you search for how to do this before asking here? I just searched for "how to search for strings in files" and the third search result provided exactly the answer you need (grep
). I see grep in the title and the tags but I'm unclear as to what problem you're actually having. did you actually trygrep
?
– strugee
yesterday
Consider giving testssl the --csvfile or --jsonfile options. They're a lot easier to parse.
– Mark Plotnick
yesterday
add a comment |
1
Welcome to UNIX&Linux stack exchange. Please review the welcome and help center documentation, particularly how to ask a good question and consider re-phrasing your question if you still cannot find a solution.
– 0xSheepdog
yesterday
1
Are you aware that you can dogrep -F
to do plain string matching, not regular expressions? Check your grep man page.
– glenn jackman
yesterday
did you search for how to do this before asking here? I just searched for "how to search for strings in files" and the third search result provided exactly the answer you need (grep
). I see grep in the title and the tags but I'm unclear as to what problem you're actually having. did you actually trygrep
?
– strugee
yesterday
Consider giving testssl the --csvfile or --jsonfile options. They're a lot easier to parse.
– Mark Plotnick
yesterday
1
1
Welcome to UNIX&Linux stack exchange. Please review the welcome and help center documentation, particularly how to ask a good question and consider re-phrasing your question if you still cannot find a solution.
– 0xSheepdog
yesterday
Welcome to UNIX&Linux stack exchange. Please review the welcome and help center documentation, particularly how to ask a good question and consider re-phrasing your question if you still cannot find a solution.
– 0xSheepdog
yesterday
1
1
Are you aware that you can do
grep -F
to do plain string matching, not regular expressions? Check your grep man page.– glenn jackman
yesterday
Are you aware that you can do
grep -F
to do plain string matching, not regular expressions? Check your grep man page.– glenn jackman
yesterday
did you search for how to do this before asking here? I just searched for "how to search for strings in files" and the third search result provided exactly the answer you need (
grep
). I see grep in the title and the tags but I'm unclear as to what problem you're actually having. did you actually try grep
?– strugee
yesterday
did you search for how to do this before asking here? I just searched for "how to search for strings in files" and the third search result provided exactly the answer you need (
grep
). I see grep in the title and the tags but I'm unclear as to what problem you're actually having. did you actually try grep
?– strugee
yesterday
Consider giving testssl the --csvfile or --jsonfile options. They're a lot easier to parse.
– Mark Plotnick
yesterday
Consider giving testssl the --csvfile or --jsonfile options. They're a lot easier to parse.
– Mark Plotnick
yesterday
add a comment |
0
active
oldest
votes
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
-awk, grep, sed
1
Welcome to UNIX&Linux stack exchange. Please review the welcome and help center documentation, particularly how to ask a good question and consider re-phrasing your question if you still cannot find a solution.
– 0xSheepdog
yesterday
1
Are you aware that you can do
grep -F
to do plain string matching, not regular expressions? Check your grep man page.– glenn jackman
yesterday
did you search for how to do this before asking here? I just searched for "how to search for strings in files" and the third search result provided exactly the answer you need (
grep
). I see grep in the title and the tags but I'm unclear as to what problem you're actually having. did you actually trygrep
?– strugee
yesterday
Consider giving testssl the --csvfile or --jsonfile options. They're a lot easier to parse.
– Mark Plotnick
yesterday