✏️ 正在编辑: Path.pm
路径:
/snap/core/17292/usr/share/perl5/Debconf/Path.pm
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
#!/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
💾 保存文件
← 返回文件管理器