All,
I need some command like GREP in UNIX for WINDOWS Operating system, If there any way to use grep or any equivalent command in Windows?
Please help
|
|
|
|
|
|
|
Some options:
|
||
|
|
|
|
if you do not have grep on windows, fret not. you can use findstr like one of them mentioned, or just do some vbscript programming. example of searching for a pattern: (equivalent to grep "word" file)
Of course, if you can afford the luxury of downloading stuff to your environment, use the GNU grep (and others). They can make your batch scripting experience easier. |
||
|
|
|
|
MSYS is another (lightweight) option. |
||
|
|
|
|
This software has worked well for me in the past: The Berkeley Utilities |
||
|
|
|
|
Cygwin is good if you want the entire set of UNIX tools (compiler, X servers, everything). The Cygwin DLL actually gives you a full-blown UNIX environment, command line tools, GUI stuff and programming environment so you can easily port UNIX software to Windows. I prefer GnuWin32 (GNU for Windows) myself since I can just add what I need. It comes in packages so you don't have to install the lot. They're also compiled natively for Windows without requiring the Cygwin DLL. For example, I had a situation recently where I just needed awk on a particular box for some quick and dirty text file manipulation. I balked at having to install the entire Cygwin environment and GnuWin32 was a lot easier (and quicker). In terms of
|
|||
|
|
|
Install Cygwin. It's a unix emulator and will let you use regex on windows. |
||
|
|
|
|
One way is to install Cygwin. Cygwin uses a dll that simulates POSIX behaviour. There are a couple of native projects for Unix tools: GnuWin32 and UnxUtils. |
||
|
|
|
|
You could try Cygwin, it's a full collection of command line tools that are common on unix systems. |
||
|
|