Help for this page

Select Code to Download


  1. or download this
    %libs = get_libs($path);
    
  2. or download this
    ldd <path>
    
  3. or download this
            linux-vdso.so.1 (0x00007ffff733a000)                          
    +                                         
            libems_sh.so => not found                                     
    +                                         
            libdl.so.2 => /lib64/libdl.so.2 (0x00007ffff7b337000)         
    +                                          
            libtq.so => not found
    
  4. or download this
    my $cmd = "ldd $path";
    my ($stdout, $stderr, $exit_status) = capture { system($cmd); };
    ...
            print("Invalid line: $line of $path\n");
        }
    }