grep -P regexp problem

Peter Rosin peda@lysator.liu.se
Wed Mar 4 13:57:00 GMT 2009


Den 2009-03-03 19:26 skrev Andriy Sen:
> 
> Below is an example of the problem.
> 
> G:\>grep -V
> GNU grep 2.5.3
> 
> Copyright (C) 1988, 1992-2002, 2004, 2005  Free Software Foundation, Inc.
> This is free software; see the source for copying conditions.  There is NO
> warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
> 
> 
> G:\>cat test.s
> a
> 1
> 
> G:\>cat test.s | grep -P "[^0]1"
> a
> 1
> 
> G:\>

FYI, appears to not be cygwin specific...

$ uname -s -r
Linux 2.6.23-gentoo-r8
$ grep -V
grep (GNU grep) 2.5.1

Copyright 1988, 1992-1999, 2000, 2001 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

$ cat test.s
a
1
$ cat test.s | grep -P "[^0]1"
a
1
$ od -a test.s
0000000   a  nl   1  nl
0000004

Cheers,
Peter

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/



More information about the Cygwin mailing list