📁 File Manager Pro
v10.0.3 | PHP: 7.4.15
Server: Apache/2.4.25 (Debian)
2026-07-02 03:36:35
📂
/ (Root)
/
usr
/
share
/
perl5
/
Debconf
📍 /usr/share/perl5/Debconf
🔄 Refresh
✏️
Editing: Path.pm
Read Only
#!/usr/bin/perl # This file was preprocessed, do not edit! package Debconf::Path; use strict; use File::Spec; sub find { my $program=shift; my @path=File::Spec->path(); for my $dir (@path) { my $file=File::Spec->catfile($dir, $program); return 1 if -x $file; } return ''; } 1
💾 Save Changes
❌ Cancel