Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.216.37
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby20 /
share /
ri /
2.0.0 /
system /
Readline /
Delete
Unzip
Name
Size
Permission
Date
Action
basic_quote_characters%3d-c.ri
601
B
-rw-r--r--
2023-07-26 17:38
basic_quote_characters-c.ri
598
B
-rw-r--r--
2023-07-26 17:38
basic_word_break_characters%3d-c.ri
760
B
-rw-r--r--
2023-07-26 17:38
basic_word_break_characters-c.ri
653
B
-rw-r--r--
2023-07-26 17:38
cdesc-Readline.ri
3.6
KB
-rw-r--r--
2023-07-26 17:38
completer_quote_characters%3d-c.ri
837
B
-rw-r--r--
2023-07-26 17:38
completer_quote_characters-c.ri
633
B
-rw-r--r--
2023-07-26 17:38
completer_word_break_characters%3d-c.ri
742
B
-rw-r--r--
2023-07-26 17:38
completer_word_break_characters-c.ri
666
B
-rw-r--r--
2023-07-26 17:38
completion_append_character%3d-c.ri
1.37
KB
-rw-r--r--
2023-07-26 17:38
completion_append_character-c.ri
656
B
-rw-r--r--
2023-07-26 17:38
completion_case_fold%3d-c.ri
490
B
-rw-r--r--
2023-07-26 17:38
completion_case_fold-c.ri
810
B
-rw-r--r--
2023-07-26 17:38
completion_proc%3d-c.ri
2.75
KB
-rw-r--r--
2023-07-26 17:38
completion_proc-c.ri
458
B
-rw-r--r--
2023-07-26 17:38
emacs_editing_mode%3f-c.ri
585
B
-rw-r--r--
2023-07-26 17:38
emacs_editing_mode-c.ri
650
B
-rw-r--r--
2023-07-26 17:38
filename_quote_characters%3d-c.ri
695
B
-rw-r--r--
2023-07-26 17:38
filename_quote_characters-c.ri
672
B
-rw-r--r--
2023-07-26 17:38
get_screen_size-c.ri
629
B
-rw-r--r--
2023-07-26 17:38
input%3d-c.ri
486
B
-rw-r--r--
2023-07-26 17:38
insert_text-c.ri
528
B
-rw-r--r--
2023-07-26 17:38
line_buffer-c.ri
604
B
-rw-r--r--
2023-07-26 17:38
output%3d-c.ri
492
B
-rw-r--r--
2023-07-26 17:38
point-c.ri
723
B
-rw-r--r--
2023-07-26 17:38
pre_input_hook%3d-c.ri
710
B
-rw-r--r--
2023-07-26 17:38
pre_input_hook-c.ri
578
B
-rw-r--r--
2023-07-26 17:38
readline-c.ri
2.9
KB
-rw-r--r--
2023-07-26 17:38
redisplay-c.ri
530
B
-rw-r--r--
2023-07-26 17:38
refresh_line-c.ri
442
B
-rw-r--r--
2023-07-26 17:38
set_screen_size-c.ri
641
B
-rw-r--r--
2023-07-26 17:38
special_prefixes%3d-c.ri
919
B
-rw-r--r--
2023-07-26 17:38
special_prefixes-c.ri
730
B
-rw-r--r--
2023-07-26 17:38
vi_editing_mode%3f-c.ri
573
B
-rw-r--r--
2023-07-26 17:38
vi_editing_mode-c.ri
609
B
-rw-r--r--
2023-07-26 17:38
Save
Rename
U:RDoc::NormalModule[iI" Readline:ET@0o:RDoc::Markup::Document:@parts[o;;[o:RDoc::Markup::Paragraph;[ I">The Readline module provides interface for GNU Readline. ;TI"FThis module defines a number of methods to facilitate completion ;TI";and accesses input history from the Ruby interpreter. ;TI"3This module supported Edit Line(libedit) too. ;TI"-libedit is compatible with GNU Readline.;To:RDoc::Markup::BlankLine o:RDoc::Markup::List: @type: NOTE:@items[o:RDoc::Markup::ListItem:@label[I"GNU Readline;T;[o; ;[I"/http://www.gnu.org/directory/readline.html;To;;[I"libedit;T;[o; ;[I"%http://www.thrysoee.dk/editline/;T@o; ;[I"IReads one inputted line with line edit by Readline.readline method. ;TI"=At this time, the facilitatation completion and the key ;TI"7bind like Emacs can be operated like GNU Readline.;T@o:RDoc::Markup::Verbatim;[ I"require "readline" ;TI"/while buf = Readline.readline("> ", true) ;TI" p buf ;TI" end ;T:@format0o; ;[I"EThe content that the user input can be recorded to the history. ;TI"?The history can be accessed by Readline::HISTORY constant.;T@o;;[ I"require "readline" ;TI"/while buf = Readline.readline("> ", true) ;TI" p Readline::HISTORY.to_a ;TI" print("-> ", buf, "\n") ;TI" end ;T;0o; ;[I"AMost of methods raise SecurityError exception if $SAFE is 4.;T@o; ;[I"9Documented by TAKAO Kouji <kouji at takao7 dot net>.;T: @fileI"ext/readline/readline.c;T:0@omit_headings_from_table_of_contents_below0;0;0[ [ U:RDoc::Constant[i I"HISTORY;TI"Readline::HISTORY;T00o;;[o; ;[ I"EThe history buffer. It extends Enumerable module, so it behaves ;TI"just like an array. ;TI"@For example, gets the fifth content that the user input by ;TI"HISTORY[4].;T;@@;0@@@cRDoc::NormalModule0U;[i I"FILENAME_COMPLETION_PROC;TI"'Readline::FILENAME_COMPLETION_PROC;T00o;;[o; ;[I"HThe Object with the call method that is a completion for filename. ;TI"6This is sets by Readline.completion_proc= method.;T;@@;0@@@@O0U;[i I"USERNAME_COMPLETION_PROC;TI"'Readline::USERNAME_COMPLETION_PROC;T00o;;[o; ;[I"IThe Object with the call method that is a completion for usernames. ;TI"6This is sets by Readline.completion_proc= method.;T;@@;0@@@@O0U;[i I"VERSION;TI"Readline::VERSION;T00o;;[o; ;[I"/Version string of GNU Readline or libedit.;T@;@@;0@@@@O0[ [[I" class;T[[:public['[I"basic_quote_characters;TI"ext/readline/readline.c;T[I"basic_quote_characters=;T@v[I" basic_word_break_characters;T@v[I"!basic_word_break_characters=;T@v[I"completer_quote_characters;T@v[I" completer_quote_characters=;T@v[I"$completer_word_break_characters;T@v[I"%completer_word_break_characters=;T@v[I" completion_append_character;T@v[I"!completion_append_character=;T@v[I"completion_case_fold;T@v[I"completion_case_fold=;T@v[I"completion_proc;T@v[I"completion_proc=;T@v[I"emacs_editing_mode;T@v[I"emacs_editing_mode?;T@v[I"filename_quote_characters;T@v[I"filename_quote_characters=;T@v[I"get_screen_size;T@v[I"input=;T@v[I"insert_text;T@v[I"line_buffer;T@v[I"output=;T@v[I" point;T@v[I"pre_input_hook;T@v[I"pre_input_hook=;T@v[I" readline;T@v[I"redisplay;T@v[I"refresh_line;T@v[I"set_screen_size;T@v[I"special_prefixes;T@v[I"special_prefixes=;T@v[I"vi_editing_mode;T@v[I"vi_editing_mode?;T@v[:protected[ [:private[ [I" instance;T[[;[ [;[ [;[ [ [U:RDoc::Context::Section[i 0o;;[ ;0;0[@@I"lib/debug.rb;T@@cRDoc::TopLevel