I'm using File::stat and when I print the device number of the filesystem, it returns:
although the actual device number is:
I'm returning it with:
How can I get the actual device number output of "253, 8" instead of 64776?
Code:
64776
Code:
253, 8
I'm returning it with:
Code:
$s = stat($filename);
$s->dev;
How can I get the actual device number output of "253, 8" instead of 64776?