File Perl

#Format
#tell (FILEHANDLE);
#tell FILEHANDLE;
#tell;
open(PASSWD, "/etc/passwd") || die "Can't open: $!\n";
while ( chomp($line = ) ){
    if ( $line =~ /sync/){
       $current = tell;
       print "---$line---\n";
    }
}
printf "The position returned by tell is %d.\n", $current;
seek(PASSWD, $current, 0);
while(){
    print;
}