How to grep while excluding some words?
I wanted to grep the word "force" but most of the output listed is from the command -force
.
When I did grep -v "-force" filename
, it says grep : orce most probably because of the -f command.
I just want to find a force
signal from files using grep. How?
linux unix command
add a comment |
I wanted to grep the word "force" but most of the output listed is from the command -force
.
When I did grep -v "-force" filename
, it says grep : orce most probably because of the -f command.
I just want to find a force
signal from files using grep. How?
linux unix command
Do you want to say you want to grep "force" but not "-force"?
– HongboZhu
Nov 21 '18 at 11:56
add a comment |
I wanted to grep the word "force" but most of the output listed is from the command -force
.
When I did grep -v "-force" filename
, it says grep : orce most probably because of the -f command.
I just want to find a force
signal from files using grep. How?
linux unix command
I wanted to grep the word "force" but most of the output listed is from the command -force
.
When I did grep -v "-force" filename
, it says grep : orce most probably because of the -f command.
I just want to find a force
signal from files using grep. How?
linux unix command
linux unix command
asked Nov 21 '18 at 6:29


Nur Sakinah BurhanuddinNur Sakinah Burhanuddin
11
11
Do you want to say you want to grep "force" but not "-force"?
– HongboZhu
Nov 21 '18 at 11:56
add a comment |
Do you want to say you want to grep "force" but not "-force"?
– HongboZhu
Nov 21 '18 at 11:56
Do you want to say you want to grep "force" but not "-force"?
– HongboZhu
Nov 21 '18 at 11:56
Do you want to say you want to grep "force" but not "-force"?
– HongboZhu
Nov 21 '18 at 11:56
add a comment |
5 Answers
5
active
oldest
votes
use grep -v -- "-force"
- the double -
signals that there are no more options being expected.
this is really a very nice trick!
– HongboZhu
Nov 21 '18 at 12:12
the complete answer isgrep -v -- "-force" | grep force
– HongboZhu
Nov 21 '18 at 12:15
add a comment |
If you want to grep specific word from file then we can use cat command
# cat filename.txt | grep force
For other basic Commands
cat is redundant here. simply grep the file. Google "useless use of cat" :)
– HongboZhu
Nov 21 '18 at 12:14
add a comment |
Try this:
grep -v "-force" filename | grep force
First use -v
to surppress lines containing '-force'. Then grep force
in the remaining lines.
1
It would be better if you added an explanation to the answer.
– Germano Plebani
Nov 21 '18 at 8:23
In this case, you need to escape the hyphen by backslash:grep -v "-force" filename | grep force
.
– HongboZhu
Nov 21 '18 at 12:08
add a comment |
this line maybe simpler:
grep '[^-]force' tmp
it says: grep "force", but only if it does not has a prefix -
by using [^]
. See some simple regular expression examples here.
add a comment |
Use [-] to remove the special significance. Check this out:
> cat rand_file.txt
1. list items of random text
2. -force
3. look similar as the first batch
4. force
5. some random text
> grep -v "-force" rand_file.txt
grep: orce: No such file or directory
> grep -v "[-]force" rand_file.txt | grep force
4. force
>
I think you need to add| grep force
to the end of your last command as only line 4 is desirable (force signal).
– HongboZhu
Nov 21 '18 at 12:03
yes..right..let me update the answer
– stack0114106
Nov 21 '18 at 12:07
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53406384%2fhow-to-grep-while-excluding-some-words%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
use grep -v -- "-force"
- the double -
signals that there are no more options being expected.
this is really a very nice trick!
– HongboZhu
Nov 21 '18 at 12:12
the complete answer isgrep -v -- "-force" | grep force
– HongboZhu
Nov 21 '18 at 12:15
add a comment |
use grep -v -- "-force"
- the double -
signals that there are no more options being expected.
this is really a very nice trick!
– HongboZhu
Nov 21 '18 at 12:12
the complete answer isgrep -v -- "-force" | grep force
– HongboZhu
Nov 21 '18 at 12:15
add a comment |
use grep -v -- "-force"
- the double -
signals that there are no more options being expected.
use grep -v -- "-force"
- the double -
signals that there are no more options being expected.
edited Nov 21 '18 at 12:16
HongboZhu
2,90922128
2,90922128
answered Nov 21 '18 at 6:55


Andreas P.Andreas P.
111
111
this is really a very nice trick!
– HongboZhu
Nov 21 '18 at 12:12
the complete answer isgrep -v -- "-force" | grep force
– HongboZhu
Nov 21 '18 at 12:15
add a comment |
this is really a very nice trick!
– HongboZhu
Nov 21 '18 at 12:12
the complete answer isgrep -v -- "-force" | grep force
– HongboZhu
Nov 21 '18 at 12:15
this is really a very nice trick!
– HongboZhu
Nov 21 '18 at 12:12
this is really a very nice trick!
– HongboZhu
Nov 21 '18 at 12:12
the complete answer is
grep -v -- "-force" | grep force
– HongboZhu
Nov 21 '18 at 12:15
the complete answer is
grep -v -- "-force" | grep force
– HongboZhu
Nov 21 '18 at 12:15
add a comment |
If you want to grep specific word from file then we can use cat command
# cat filename.txt | grep force
For other basic Commands
cat is redundant here. simply grep the file. Google "useless use of cat" :)
– HongboZhu
Nov 21 '18 at 12:14
add a comment |
If you want to grep specific word from file then we can use cat command
# cat filename.txt | grep force
For other basic Commands
cat is redundant here. simply grep the file. Google "useless use of cat" :)
– HongboZhu
Nov 21 '18 at 12:14
add a comment |
If you want to grep specific word from file then we can use cat command
# cat filename.txt | grep force
For other basic Commands
If you want to grep specific word from file then we can use cat command
# cat filename.txt | grep force
For other basic Commands
answered Nov 21 '18 at 7:10


Vinay PatilVinay Patil
11
11
cat is redundant here. simply grep the file. Google "useless use of cat" :)
– HongboZhu
Nov 21 '18 at 12:14
add a comment |
cat is redundant here. simply grep the file. Google "useless use of cat" :)
– HongboZhu
Nov 21 '18 at 12:14
cat is redundant here. simply grep the file. Google "useless use of cat" :)
– HongboZhu
Nov 21 '18 at 12:14
cat is redundant here. simply grep the file. Google "useless use of cat" :)
– HongboZhu
Nov 21 '18 at 12:14
add a comment |
Try this:
grep -v "-force" filename | grep force
First use -v
to surppress lines containing '-force'. Then grep force
in the remaining lines.
1
It would be better if you added an explanation to the answer.
– Germano Plebani
Nov 21 '18 at 8:23
In this case, you need to escape the hyphen by backslash:grep -v "-force" filename | grep force
.
– HongboZhu
Nov 21 '18 at 12:08
add a comment |
Try this:
grep -v "-force" filename | grep force
First use -v
to surppress lines containing '-force'. Then grep force
in the remaining lines.
1
It would be better if you added an explanation to the answer.
– Germano Plebani
Nov 21 '18 at 8:23
In this case, you need to escape the hyphen by backslash:grep -v "-force" filename | grep force
.
– HongboZhu
Nov 21 '18 at 12:08
add a comment |
Try this:
grep -v "-force" filename | grep force
First use -v
to surppress lines containing '-force'. Then grep force
in the remaining lines.
Try this:
grep -v "-force" filename | grep force
First use -v
to surppress lines containing '-force'. Then grep force
in the remaining lines.
edited Nov 21 '18 at 11:58
HongboZhu
2,90922128
2,90922128
answered Nov 21 '18 at 7:01
Mayank PorwalMayank Porwal
4,9202724
4,9202724
1
It would be better if you added an explanation to the answer.
– Germano Plebani
Nov 21 '18 at 8:23
In this case, you need to escape the hyphen by backslash:grep -v "-force" filename | grep force
.
– HongboZhu
Nov 21 '18 at 12:08
add a comment |
1
It would be better if you added an explanation to the answer.
– Germano Plebani
Nov 21 '18 at 8:23
In this case, you need to escape the hyphen by backslash:grep -v "-force" filename | grep force
.
– HongboZhu
Nov 21 '18 at 12:08
1
1
It would be better if you added an explanation to the answer.
– Germano Plebani
Nov 21 '18 at 8:23
It would be better if you added an explanation to the answer.
– Germano Plebani
Nov 21 '18 at 8:23
In this case, you need to escape the hyphen by backslash:
grep -v "-force" filename | grep force
.– HongboZhu
Nov 21 '18 at 12:08
In this case, you need to escape the hyphen by backslash:
grep -v "-force" filename | grep force
.– HongboZhu
Nov 21 '18 at 12:08
add a comment |
this line maybe simpler:
grep '[^-]force' tmp
it says: grep "force", but only if it does not has a prefix -
by using [^]
. See some simple regular expression examples here.
add a comment |
this line maybe simpler:
grep '[^-]force' tmp
it says: grep "force", but only if it does not has a prefix -
by using [^]
. See some simple regular expression examples here.
add a comment |
this line maybe simpler:
grep '[^-]force' tmp
it says: grep "force", but only if it does not has a prefix -
by using [^]
. See some simple regular expression examples here.
this line maybe simpler:
grep '[^-]force' tmp
it says: grep "force", but only if it does not has a prefix -
by using [^]
. See some simple regular expression examples here.
answered Nov 21 '18 at 12:06
HongboZhuHongboZhu
2,90922128
2,90922128
add a comment |
add a comment |
Use [-] to remove the special significance. Check this out:
> cat rand_file.txt
1. list items of random text
2. -force
3. look similar as the first batch
4. force
5. some random text
> grep -v "-force" rand_file.txt
grep: orce: No such file or directory
> grep -v "[-]force" rand_file.txt | grep force
4. force
>
I think you need to add| grep force
to the end of your last command as only line 4 is desirable (force signal).
– HongboZhu
Nov 21 '18 at 12:03
yes..right..let me update the answer
– stack0114106
Nov 21 '18 at 12:07
add a comment |
Use [-] to remove the special significance. Check this out:
> cat rand_file.txt
1. list items of random text
2. -force
3. look similar as the first batch
4. force
5. some random text
> grep -v "-force" rand_file.txt
grep: orce: No such file or directory
> grep -v "[-]force" rand_file.txt | grep force
4. force
>
I think you need to add| grep force
to the end of your last command as only line 4 is desirable (force signal).
– HongboZhu
Nov 21 '18 at 12:03
yes..right..let me update the answer
– stack0114106
Nov 21 '18 at 12:07
add a comment |
Use [-] to remove the special significance. Check this out:
> cat rand_file.txt
1. list items of random text
2. -force
3. look similar as the first batch
4. force
5. some random text
> grep -v "-force" rand_file.txt
grep: orce: No such file or directory
> grep -v "[-]force" rand_file.txt | grep force
4. force
>
Use [-] to remove the special significance. Check this out:
> cat rand_file.txt
1. list items of random text
2. -force
3. look similar as the first batch
4. force
5. some random text
> grep -v "-force" rand_file.txt
grep: orce: No such file or directory
> grep -v "[-]force" rand_file.txt | grep force
4. force
>
edited Nov 21 '18 at 12:10
HongboZhu
2,90922128
2,90922128
answered Nov 21 '18 at 10:05
stack0114106stack0114106
3,4242418
3,4242418
I think you need to add| grep force
to the end of your last command as only line 4 is desirable (force signal).
– HongboZhu
Nov 21 '18 at 12:03
yes..right..let me update the answer
– stack0114106
Nov 21 '18 at 12:07
add a comment |
I think you need to add| grep force
to the end of your last command as only line 4 is desirable (force signal).
– HongboZhu
Nov 21 '18 at 12:03
yes..right..let me update the answer
– stack0114106
Nov 21 '18 at 12:07
I think you need to add
| grep force
to the end of your last command as only line 4 is desirable (force signal).– HongboZhu
Nov 21 '18 at 12:03
I think you need to add
| grep force
to the end of your last command as only line 4 is desirable (force signal).– HongboZhu
Nov 21 '18 at 12:03
yes..right..let me update the answer
– stack0114106
Nov 21 '18 at 12:07
yes..right..let me update the answer
– stack0114106
Nov 21 '18 at 12:07
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53406384%2fhow-to-grep-while-excluding-some-words%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Do you want to say you want to grep "force" but not "-force"?
– HongboZhu
Nov 21 '18 at 11:56