X7ROOT File Manager
Current Path:
/usr/libexec/kde4
usr
/
libexec
/
kde4
/
📁
..
📄
add-printer
(215.26 KB)
📄
backlighthelper
(28.04 KB)
📄
bluedevil-authorize
(19.81 KB)
📄
bluedevil-confirmmodechange
(19.77 KB)
📄
bluedevil-requestconfirmation
(15.71 KB)
📄
bluedevil-requestpin
(28.18 KB)
📄
configure-printer
(128.11 KB)
📄
drkonqi
(496.52 KB)
📄
filesharelist
(10.76 KB)
📄
fileshareset
(10.76 KB)
📄
fontinst
(147.27 KB)
📄
fontinst_helper
(90.28 KB)
📄
fontinst_x11
(1.86 KB)
📄
installdbgsymbols.sh
(2.59 KB)
📄
kaccessibleapp
(70.57 KB)
📄
kalarm_helper
(23.91 KB)
📄
kauth-policy-gen
(27.84 KB)
📄
kcheckpass
(19.61 KB)
📄
kcmdatetimehelper
(28.05 KB)
📄
kcmremotewidgetshelper
(15.54 KB)
📄
kconf_update
(6.99 KB)
📄
kdeeject
(993 B)
📄
kdesu
(49.17 KB)
📄
kdesu_stub
(15.58 KB)
📄
kdesud
(51.82 KB)
📄
kdontchangethehostname
(28.02 KB)
📄
kfontprint
(53.63 KB)
📄
khc_docbookdig.pl
(5.09 KB)
📄
khc_htdig.pl
(3.73 KB)
📄
khc_htsearch.pl
(2.09 KB)
📄
khc_indexbuilder
(28.34 KB)
📄
khc_mansearch.pl
(1.99 KB)
📄
kio_http_cache_cleaner
(7 KB)
📄
kioexec
(36.38 KB)
📄
kioslave
(11.19 KB)
📄
klauncher
(6.99 KB)
📄
knetattach
(57.37 KB)
📄
kpac_dhcp_helper
(10.87 KB)
📄
kscreenlocker_greet
(125.84 KB)
📄
ksendbugmail
(44.99 KB)
📄
ksysguardprocesslist_helper
(52.76 KB)
📄
kwin_killer_helper
(23.65 KB)
📄
kwin_opengl_test
(11.13 KB)
📄
kwin_rules_dialog
(7 KB)
📄
lnusertemp
(15.24 KB)
📄
networkmanagement_configshell
(119.38 KB)
📄
polkit-kde-authentication-agent-1
(78.72 KB)
📄
print-queue
(116.21 KB)
📄
start_kdeinit
(11.2 KB)
📄
start_kdeinit_wrapper
(7.07 KB)
Editing: khc_htsearch.pl
#!/usr/bin/perl use strict; use Encode; use Getopt::Long; use open IO => ':utf8'; use open ':std'; my $htsearchpath="/usr/bin/htsearch"; my $config; my $format; my $method; my $words; my $lang; my $docbook; my $indexdir; my $maxnum; GetOptions ( 'binary=s' => \$htsearchpath, 'config=s' => \$config, 'format=s' => \$format, 'method=s' => \$method, 'words=s' => \$words, 'lang=s' => \$lang, 'docbook' => \$docbook, 'indexdir=s' => \$indexdir, 'maxnum=s' => \$maxnum ); if ( !$indexdir ) { print STDERR "No index dir given.\n"; exit 1; } if ( !$lang ) { $lang = "en"; } my $charset = langCharset( $lang ); $words = encode( $charset, $words ); if ( !open( HTSEARCH, "-|", "$htsearchpath", "-c", "$indexdir/$config.conf", "format=$format&method=$method&words=$words&matchesperpage=$maxnum&exclude=[index.html]" ) ) { print "Can't execute htsearch at '$htsearchpath'.\n"; exit 1; } my ($body,$liststart,$ref,$link,$error,$errorOut); while( <HTSEARCH> ) { if ( !$body ) { print; if ( /^<body/ ) { $body = 1; } } if ( /^<h3>/ ) { print; print "<ul>\n"; $liststart = 1; } if ( /^<img src.*<a href="(.*)">(.*)<\/a>/ ) { $ref = $1; $link = $2; print STDERR "REF: $ref LINK: $link\n"; $ref =~ s/file:\/\/localhost//; $ref =~ s/http:\/\/localhost\//file:\//; if ( $docbook ) { $ref =~ /help:\/\/(.*)\/index.docbook/; my $app = $1; $ref = "help:$app"; $link =~ s/apptitle/$app/; } print " <li><a href=\"$ref\">$link</a></li>\n"; } if ( /^<h1>ht:\/\/Dig error/ ) { $error = 1; print "Htdig error:\n"; } if ( $error && /^<pre>/ ) { $errorOut = 1; } if ( $errorOut ) { print; if ( /^<\/pre>/ ) { $errorOut = 0; } } } close HTSEARCH; if ( $liststart ) { print "</ul>\n"; } print "</body></html>\n"; if ( $? != 0 ) { exit $?; } 1; # Return charset used for given language sub langCharset( $ ) { my $lang = shift; if ( $lang eq "cz" || $lang eq "hu" ) { return "latin2"; } elsif ( $lang eq "kr" ) { return "utf8"; } else { return "latin1"; } }
Upload File
Create Folder