cybersekkin has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl use strict; use DBI; my $fqfn = '/home/daveb/temp.txt'; #my @stats = lstat $fqfn; my @stats = (-1000, 3000000000, -22345); my($dev, $ino, $garbage) = @stats; print "$dev\n$ino\n$garbage\n";
Edited by planetscape - added code tags
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: lstat for large inode values over 3billion
by Celada (Monk) on Dec 06, 2005 at 19:09 UTC | |
by cybersekkin (Novice) on Dec 07, 2005 at 19:34 UTC |