Subject: Re: funny grep
To: Andrew Wheadon <andrew@wipux2.wifo.uni-mannheim.de>
From: Ken Nakata <kenn@eden.rutgers.edu>
List: current-users
Date: 04/18/1996 09:29:29
> bugs:*:101:100:Bug Filer:/home/hiwis/bugs:/bin/go
> x11:*:102:100:Mr. X:/home/hiwis/x11:/bin/go
> lp:*:110:32766:Max Hit Lp:/var/spool/laser1:/bin/go
> tftp:*:113:32766:Trivial Ftp:/:/dev/null
> ftp:*:200:32766:Anonymous Ftp,,,:/mit/ftp:/dev/null
> anon:*:200:32766:Anonymous Sup,,,:/mit/ftp/pub/NetBSD:/dev/null
> httpd:*:202:40:Humpty Dumpty:/usr/local/etc/httpd:/dev/null
> 
> <root@wipux2:~> grep -v [a-z] /etc/passwd
> tftp:*:113:32766:Trivial Ftp:/:/dev/null
> <root@wipux2:~>
> 
> Why is grep outputting the 'tftp' line ?

Are you sure you don't have a file 'a', 'b', ..., or 'z' in your home
directory?  If you do, shell might have expanded '[a-z]' into the
filename before passing it to grep.

ken