Help for this page

Select Code to Download


  1. or download this
    {
      '/a/b/c/dt/data/SUSE/tool/0.9.0' => '/a/b/c/dt/tools/SUSE/tool/0.9.0
    +',
      '/nfs/us/tools/SUSE12' => '/usr/bin',
      '/a/b/c' => '/p'
    };
    
  2. or download this
    realpath /p # Yields /a/b/c
    
  3. or download this
    {
      '/a/b/c/dt/data/SUSE/tool/0.9.0' => '/p/dt/tools/SUSE/tool/0.9.0',
      '/nfs/us/tools/SUSE12' => '/usr/bin',
      '/a/b/c' => '/p'
    };
    
  4. or download this
    foreach my $actual_path_to_check (keys(%{$virtual_paths_href})) {
        foreach my $current_actual_path (keys(%{$virtual_paths_href})) {
    ...
            }
        }
    }