Help for this page

Select Code to Download


  1. or download this
    # 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 }
    }