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.47
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 /
emacs /
27.1 /
etc /
srecode /
[ HOME SHELL ]
Name
Size
Permission
Action
c.srt
3.07
KB
-rw-r--r--
cpp.srt
3.09
KB
-rw-r--r--
default.srt
1.92
KB
-rw-r--r--
doc-cpp.srt
2.56
KB
-rw-r--r--
doc-default.srt
2.13
KB
-rw-r--r--
doc-java.srt
2.56
KB
-rw-r--r--
ede-autoconf.srt
1.75
KB
-rw-r--r--
ede-make.srt
2.04
KB
-rw-r--r--
el.srt
6.68
KB
-rw-r--r--
getset-cpp.srt
1.32
KB
-rw-r--r--
java.srt
3.7
KB
-rw-r--r--
make.srt
1.55
KB
-rw-r--r--
proj-test.srt
1.06
KB
-rw-r--r--
template.srt
4.18
KB
-rw-r--r--
test.srt
4.12
KB
-rw-r--r--
texi.srt
2.63
KB
-rw-r--r--
wisent.srt
1.99
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : template.srt
;;; template.srt --- Templates for Semantic Recoders ;; Copyright (C) 2005, 2007-2020 Free Software Foundation, Inc. ;; Author: Eric M. Ludlam <zappo@gnu.org> ;; This file is part of GNU Emacs. ;; GNU Emacs is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or ;; (at your option) any later version. ;; GNU Emacs is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. set escape_start "$" set escape_end "$" set mode "srecode-template-mode" set priority "70" set comment_start ";;" set comment_end "" set comment_prefix ";;" set SEPARATOR "----" set DOLLAR "$" context file prompt MAJORMODE "Major Mode for templates: " read srecode-read-major-mode-name prompt START "Escape Start Characters: " default "{{" prompt END "Escape End Characters: " default "}}" template empty :file :user :time :srt "Insert a skeleton for a template file." ---- $>:filecomment$ set mode "$?MAJORMODE$" set escape_start "$?START$" set escape_end "$?END$" context file $^$ ;; end ---- template mode-basics :srt "Fill out a full template including parts for basic new mode stuff." sectiondictionary "E" set NAME "empty :file :user :time" set DOC "Fill out an empty file." set KEY "e" sectiondictionary "C1" set NAME "declaration" sectiondictionary "DTF" set NAME "function :blank :indent" set DOC "Template to declare a function." set KEY "f" sectiondictionary "DTV" set NAME "variable :blank :indent" set DOC "Template to declare a variable." set KEY "v" sectiondictionary "PR" set NAME "NAME" set PROMPT "Name for declaration: " ---- $>:declaration:commentchars$ $<E:declaration:function$ $ESCAPE_START$>:filecomment$ESCAPE_END$ $/E$ $>C1:declaration:context$ $>PR:declaration:prompt$ $>DTF:declaration:function$ $>DTV:declaration:function$ ---- bind "m" context declaration prompt NAME "Name of new template: " prompt KEY "Key Binding: " read read-char template function :blank "Insert a template block for Srecoder templates." ---- template $?NAME$$#ARG$$NAME$$/ARG$ "$DOC$" $SEPARATOR$ $^$ $SEPARATOR$ bind "$?KEY$" ---- bind "f" prompt NAME "Name of new variable: " template variable :blank "Inert a variable." ---- set $?NAME$ "$^$" ---- bind "v" template prompt :blank "Insert a prompt." ---- prompt $?NAME$ "$?PROMPT$" ---- bind "p" template priority :blank "Insert a priority statement." ---- set priority $^$ ---- template application :blank "Insert an application statement." ---- set application "$^$" ---- template context :blank "Insert a context statement." ---- context $NAME$ ---- bind "c" template commentchars :blank "Insert the variables for handling comments." ---- set comment_start "" set comment_end "" set comment_prefix "" ---- context code prompt NAME "Name of variable: " read srecode-read-variable-name template variable :srt "Insert a variable with completion from the current file." ---- $ESCAPE_START$$?NAME$$ESCAPE_END$ ---- bind "v" prompt NAME "Name of macro: " template ask :srt "Insert a prompting variable." ---- $ESCAPE_START$?$?NAME$$ESCAPE_END$ ---- bind "a" template comment :srt ---- $ESCAPE_START$!$^$$ESCAPE_END$ ---- bind "c" prompt TEMPLATE "Template to include: " read srecode-read-template-name template include :srt ---- $ESCAPE_START$>:$?TEMPLATE$$ESCAPE_END$ ---- bind "i" template includewrap :srt ---- $ESCAPE_START$<:$?TEMPLATE$$ESCAPE_END$$^$$ESCAPE_START$/$NAME$$ESCAPE_END$ ---- bind "w" template point :srt ---- $ESCAPE_START$^$ESCAPE_END$ ---- bind "p" template section :srt "Insert a section, or looping construct." ---- $ESCAPE_START$#$?NAME$$ESCAPE_END$ $^$ $ESCAPE_START$/$NAME$$ESCAPE_END$ ---- bind "s" template escape-start-quoted :srt "Escape Start" ---- $ESCAPE_START$ESCAPE_START$ESCAPE_END$ ---- bind "q" template escape-end-quoted :srt "Escape Start" ---- $ESCAPE_START$ESCAPE_END$ESCAPE_END$ ---- bind "e" ;; end
Close