- Aug
- 2,320
- 111
I am using;
As a test, here is test.txt;
I want to view the file, but start displaying the file at the position of a string match;
...which works as it should.
When piping into VIEW and doing a search;
...this does not work, that is, view is not launched, no result is returned.
If I pipe into LIST, it does work;
How can I Pipe into VIEW and search?
Joe
Code:
TCC 22.00.32 x64 Windows 7 [Version 6.1.7601]
As a test, here is test.txt;
Code:
The
quick
brown
fox
jumped
over
the
lazy
dog
I want to view the file, but start displaying the file at the position of a string match;
Code:
view test.txt /s:jumped
...which works as it should.
When piping into VIEW and doing a search;
Code:
type test.txt | view /s:jumped
...this does not work, that is, view is not launched, no result is returned.
If I pipe into LIST, it does work;
Code:
type test.txt | list /t"jumped"
How can I Pipe into VIEW and search?
Joe