Community Page
- www.tech-recipes.com/ Jump to website »
-
Subscribe -
Community
-
Top Commenters
-
Popular Threads
-
Recent Comments
- thanks, i couldnt remember.
- I did this in Garage band, but if forced me to trip the song to 8 seconds in order to send it to itunes ringtones - any ideas on this? Using the new 3GS.
- Please dont remove this Folder, It occupies only 315 MB and is useful for your Office 2003.... SRIKANTH
- that still wont work and i got no idea about registery could use help
- Thanx for help
Tech-Recipes
Cookbook of Tech Tutorialsmsh: Extract text from a stream with grep-string | Windows Monad msh | Tech-Recipes
Started by qdideas · 9 months ago
4 years ago
3 years ago
[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)
3 years ago
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