How to return nearby lines when using “findstr” command in Windows Command Prompt?
up vote
0
down vote
favorite
How to return nearby lines when using "findstr" command in Windows Command Prompt?
I find the findstr
useful when searching for lines in files.
However, I want to use it like grep -C <n>
, to return nearby lines of the matched line.
How can I do this in Windows?
windows command-line
add a comment |
up vote
0
down vote
favorite
How to return nearby lines when using "findstr" command in Windows Command Prompt?
I find the findstr
useful when searching for lines in files.
However, I want to use it like grep -C <n>
, to return nearby lines of the matched line.
How can I do this in Windows?
windows command-line
I'd use PowerShell instead and it'sSelect-String
with the -context parameter.
– LotPings
Nov 21 at 10:38
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
How to return nearby lines when using "findstr" command in Windows Command Prompt?
I find the findstr
useful when searching for lines in files.
However, I want to use it like grep -C <n>
, to return nearby lines of the matched line.
How can I do this in Windows?
windows command-line
How to return nearby lines when using "findstr" command in Windows Command Prompt?
I find the findstr
useful when searching for lines in files.
However, I want to use it like grep -C <n>
, to return nearby lines of the matched line.
How can I do this in Windows?
windows command-line
windows command-line
asked Nov 21 at 9:20
Shuzheng
205139
205139
I'd use PowerShell instead and it'sSelect-String
with the -context parameter.
– LotPings
Nov 21 at 10:38
add a comment |
I'd use PowerShell instead and it'sSelect-String
with the -context parameter.
– LotPings
Nov 21 at 10:38
I'd use PowerShell instead and it's
Select-String
with the -context parameter.– LotPings
Nov 21 at 10:38
I'd use PowerShell instead and it's
Select-String
with the -context parameter.– LotPings
Nov 21 at 10:38
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2fsuperuser.com%2fquestions%2f1377220%2fhow-to-return-nearby-lines-when-using-findstr-command-in-windows-command-promp%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
I'd use PowerShell instead and it's
Select-String
with the -context parameter.– LotPings
Nov 21 at 10:38