SyntaxFix
Write A Post
Hire A Developer
Questions
🔍
[unix] How can I grep for a string that begins with a dash/hyphen?
Home
Question
How can I grep for a string that begins with a dash/hyphen?
you can use nawk
$ nawk '/-X/{print}' file
Examples related to
unix
•
Docker CE on RHEL - Requires: container-selinux >= 2.9
•
What does `set -x` do?
•
How to find files modified in last x minutes (find -mmin does not work as expected)
•
sudo: npm: command not found
•
How to sort a file in-place
•
How to read a .properties file which contains keys that have a period character using Shell script
•
gpg decryption fails with no secret key error
•
Loop through a comma-separated shell variable
•
Best way to find os name and version in Unix/Linux platform
•
Resource u'tokenizers/punkt/english.pickle' not found
Examples related to
grep
•
grep's at sign caught as whitespace
•
cat, grep and cut - translated to python
•
How to suppress binary file matching results in grep
•
Linux find and grep command together
•
Filtering JSON array using jQuery grep()
•
Linux Script to check if process is running and act on the result
•
grep without showing path/file:line
•
How do you grep a file and get the next 5 lines
•
How to grep, excluding some patterns?
•
Fast way of finding lines in one file that are not in another?
Examples related to
escaping
•
Uses for the '"' entity in HTML
•
Javascript - How to show escape characters in a string?
•
How to print a single backslash?
•
How to escape special characters of a string with single backslashes
•
Saving utf-8 texts with json.dumps as UTF8, not as \u escape sequence
•
Properly escape a double quote in CSV
•
How to Git stash pop specific stash in 1.8.3?
•
In Java, should I escape a single quotation mark (') in String (double quoted)?
•
How do I escape a single quote ( ' ) in JavaScript?
•
Which characters need to be escaped when using Bash?