[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: Mail: From Question

From: Dale R. Worley <dworley_at_pingtel.com>
Date: 2005-09-20 16:14:36 CEST

On Fri, 2005-09-16 at 14:41 -0400, Jamie Lawrence wrote:

> open PASSWD, "</etc/passwd" or die "$!";
> While ($line = <PASSWD>) {
> next if ( $line !=~ /^$user/ );
> $user =~ s/^.*?:.*?:.*:.*?:(.*?):.*$/$1/;
> }

    split(/:/, $line);
    next unless $_[0] eq $user;
    $user = $_[4];

Dale

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Tue Sep 20 16:31:39 2005

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.