-
Website
http://www.tech-recipes.com/ -
Original page
http://www.tech-recipes.com/rx/637/msh-extract-text-from-a-stream-with-grep-string/ -
Subscribe
All Comments -
Community
-
Top Commenters
-
davak
83 comments · 1 points
-
Web Design
3 comments · 1 points
-
danishbacker
9 comments · 1 points
-
flexinfo
11 comments · 1 points
-
Tonychelle
4 comments · 1 points
-
-
Popular Threads
-
Facebook: How To Get Only Status Updates on Your FB Home Page
1 week ago · 4 comments
-
Firefox: Enable Case Sensitive Searches When Using Find (Ctrl+F)
5 days ago · 1 comment
-
Firefox 3.6: Enable Visual Previews When Using Ctrl+Tab (Windows Only)
6 days ago · 1 comment
-
Windows 7: How To Disable Live Preview for Taskbar Thumbnails
2 weeks ago · 2 comments
-
Gmail: How to block a sender from your inbox
3 weeks ago · 3 comments
-
Facebook: How To Get Only Status Updates on Your FB Home Page
[C:]: dir | grep-string
'grep-string' is not recognized as a Cmdlet, function, operable program, or script file.
At line:1 char:17
+ dir | grep-string <<<<
[C:]:
Thomas
(http://tfl09.blogspot.com)
I didn't use beta 3, so I don't know if its the same, but there is now the select-string cmdlet (as of PowerShell RC1)
If it is the same, you'd probably already know about it (since you're blog has quite a bit of info on msh(PowerShell)
However, for others passing through, I thought I'd post this example:
> set-content test.txt "Hello World"
> dir *.txt|select-string ^H.*d$
test.txt:1:Hello World