Help for this page
# return true if both names are for the same file sub check_same_file_under_posix { ... if (($dev_a == $dev_b) && ($ino_a == $ino_b)) { return 1 } else { return 0 } }