™.. Term::UI - Online Linux Manual PageSection : 3pm
Updated : 2009-05-03
Source : perl v5.10.1
Note : Perl Programmers Reference Guide

NAMETerm::UI − Term::ReadLine UI made easy

SYNOPSIS​ use Term::UI; ​ use Term::ReadLine; ​ ​ my $term = Term::ReadLine−>new('brand'); ​ ​ my $reply = $term−>get_reply( ​ prompt => 'What is your favourite colour?', ​ choices => [qw|blue red green|], ​ default => blue, ​ ); ​ ​ my $bool = $term−>ask_yn( ​ prompt => 'Do you like cookies?', ​ default => 'y', ​ ); ​ ​ ​ my $string = q[some_command −option −−no−foo −−quux='this thing']; ​ ​ my ($options,$munged_input) = $term−>parse_options($string); ​ ​ ​ ### don't have Term::UI issue warnings −− default is '1' ​ $Term::UI::VERBOSE = 0; ​ ​ ### always pick the default (good for non−interactive terms) ​ ### −− default is '0' ​ $Term::UI::AUTOREPLY = 1; ​ ​ ### Retrieve the entire session as a printable string: ​ $hist = Term::UI::History−>history_as_string; ​ $hist = $term−>history_as_string;

DESCRIPTION\*(C`Term::UI\*(C'\fR is a transparent way of eliminating the overhead of having to format a question and then validate the reply, informing the user if the answer was not proper and re-issuing the question. Simply give it the question you want to ask, optionally with choices the user can pick from and a default and \*(C`Term::UI\*(C'\fR will \s-1DWYM\s0. For asking a yes or no question, there's even a shortcut.

HOW IT WORKS\*(C`Term::UI\*(C'\fR places itself at the back of the \f(CW\*(C`Term::ReadLine\*(C'\fR ​@ISA array, so you can call its functions through your term object. \*(C`Term::UI\*(C'\fR uses \f(CW\*(C`Term::UI::History\*(C'\fR to record all interactions with the commandline. You can retrieve this history, or alter the filehandle the interaction is printed to. See the ​\*(C`Term::UI::History\*(C'\fR manpage or the \f(CW\*(C`SYNOPSIS\*(C'\fR for details.

METHODS

$reply = $term>get_reply( prompt => 'question?', [choices => \@list, default => $list[0], multi => BOOL, print_me => ``extra text to print & record'', allow => $ref] );\*(C`get_reply\*(C'\fR asks a user a question, and then returns the reply to the caller. If the answer is invalid (more on that below), the question will be reposed, until a satisfactory answer has been entered. You have the option of providing a list of choices the user can pick from using the \*(C`choices\*(C'\fR argument. If the answer is not in the list of choices presented, the question will be reposed. If you provide a \*(C`default\*(C'\fR answer, this will be returned when either ​$AUTOREPLY is set to true, (see the \*(C`GLOBAL VARIABLES\*(C'\fR section further below), or when the user just hits \*(C`enter\*(C'\fR. You can indicate that the user is allowed to enter multiple answers by toggling the \*(C`multi\*(C'\fR flag. Note that a list of answers will then be returned to you, rather than a simple string. By specifying an \*(C`allow\*(C'\fR hander, you can yourself validate the answer a user gives. This can be any of the types that the Params::Check \*(C`allow\*(C'\fR function allows, so please refer to that manpage for details. Finally, you have the option of adding a \*(C`print_me\*(C'\fR argument, which is simply printed before the prompt. It's printed to the same file handle as the rest of the questions, so you can use this to keep track of a full session of Q&A with the user, and retrieve it later using the ​\*(C`Term::UI\->history_as_string\*(C'\fR function. See the \*(C`EXAMPLES\*(C'\fR section for samples of how to use this function.

$bool = $term>ask_yn( prompt => ``your question'', [default => (y|1,n|0), print_me => ``extra text to print & record''] )Asks a simple \*(C`yes\*(C'\fR or \f(CW\*(C`no\*(C'\fR question to the user, returning a boolean indicating \*(C`true\*(C'\fR or \f(CW\*(C`false\*(C'\fR to the caller. The \*(C`default\*(C'\fR answer will automatically returned, if the user hits ​\*(C`enter\*(C'\fR or if \f(CW$AUTOREPLY\fR is set to true. See the \f(CW\*(C`GLOBAL VARIABLES\*(C'\fR section further below. Also, you have the option of adding a \*(C`print_me\*(C'\fR argument, which is simply printed before the prompt. It's printed to the same file handle as the rest of the questions, so you can use this to keep track of a full session of Q&A with the user, and retrieve it later using the ​\*(C`Term::UI\->history_as_string\*(C'\fR function. See the \*(C`EXAMPLES\*(C'\fR section for samples of how to use this function.

($opts, $munged) = $term>parse_options( STRING );\*(C`parse_options\*(C'\fR will convert all options given from an input string to a hash reference. If called in list context it will also return the part of the input string that it found no options in. Consider this example: ​ my $str = q[command −−no−foo −−baz −−bar=0 −−quux=bleh ] . ​ q[−−option="some'thing" −one−dash −single=blah' arg]; ​ ​ my ($options,$munged) = $term−>parse_options($str); ​ ​ ### $options would contain: ### ​ $options = { ​ 'foo' => 0, ​ 'bar' => 0, ​ 'one−dash' => 1, ​ 'baz' => 1, ​ 'quux' => 'bleh', ​ 'single' => 'blah\'', ​ 'option' => 'some\'thing' ​ }; ​ ​ ### and this is the munged version of the input string, ​ ### ie what's left of the input minus the options ​ $munged = 'command arg'; As you can see, you can either use a single or a double \*(C`\-\*(C'\fR to indicate an option. If you prefix an option with \*(C`no\-\*(C'\fR and do not give it a value, it will be set to 0. If it has no prefix and no value, it will be set to 1. Otherwise, it will be set to its value. Note also that it can deal fine with single/double quoting issues.

$str = $term>history_as_stringConvenience wrapper around \*(C`Term::UI::History\->history_as_string\*(C'\fR. Consult the \*(C`Term::UI::History\*(C'\fR man page for details.

GLOBAL VARIABLESThe behaviour of Term::UI can be altered by changing the following global variables:

$Term::UI::VERBOSEThis controls whether Term::UI will issue warnings and explanations as to why certain things may have failed. If you set it to 0, Term::UI will not output any warnings. The default is 1;

$Term::UI::AUTOREPLYThis will make every question be answered by the default, and warn if there was no default provided. This is particularly useful if your program is run in non-interactive mode. The default is 0;

$Term::UI::INVALIDThis holds the string that will be printed when the user makes an invalid choice. You can override this string from your program if you, for example, wish to do localization. The default is \*(C`Invalid selection, please try again: \*(C'\fR

$Term::UI::History::HISTORY_FHThis is the filehandle all the print statements from this module are being sent to. Please consult the \*(C`Term::UI::History\*(C'\fR manpage for details. This defaults to *STDOUT.

EXAMPLES

Basic get_reply sample​ ### ask a user (with an open question) for their favourite colour ​ $reply = $term−>get_reply( prompt => 'Your favourite colour? ); which would look like: ​ Your favourite colour? and $reply would hold the text the user typed.

get_reply with choices​ ### now provide a list of choices, so the user has to pick one ​ $reply = $term−>get_reply( ​ prompt => 'Your favourite colour?', ​ choices => [qw|red green blue|] ); which would look like: ​ 1> red ​ 2> green ​ 3> blue ​ ​ Your favourite colour? $reply will hold one of the choices presented. \*(C`Term::UI\*(C'\fR will repose the question if the user attempts to enter an answer that's not in the list of choices. The string presented is held in the $Term::UI::INVALID variable (see the \*(C`GLOBAL VARIABLES\*(C'\fR section for details.

get_reply with choices and default​ ### provide a sensible default option −− everyone loves blue! ​ $reply = $term−>get_reply( ​ prompt => 'Your favourite colour?', ​ choices => [qw|red green blue|], ​ default => 'blue' ); which would look like: ​ 1> red ​ 2> green ​ 3> blue ​ ​ Your favourite colour? [3]: Note the default answer after the prompt. A user can now just hit \*(C`enter\*(C'\fR (or set $Term::UI::AUTOREPLY \*(-- see the \f(CW\*(C`GLOBAL VARIABLES\*(C'\fR section) and the sensible answer 'blue' will be returned.

get_reply using print_me & multi​ ### allow the user to pick more than one colour and add an ​ ### introduction text ​ @reply = $term−>get_reply( ​ print_me => 'Tell us what colours you like', ​ prompt => 'Your favourite colours?', ​ choices => [qw|red green blue|], ​ multi => 1 ); which would look like: ​ Tell us what colours you like ​ 1> red ​ 2> green ​ 3> blue ​ ​ Your favourite colours? An answer of \*(C`3 2 1\*(C'\fR would fill \f(CW@reply\fR with \f(CW\*(C`blue green red\*(C'\fR

get_reply & allow​ ### pose an open question, but do a custom verification on ​ ### the answer, which will only exit the question loop, if ​ ### the answer matches the allow handler. ​ $reply = $term−>get_reply( ​ prompt => "What is the magic number?", ​ allow => 42 ); Unless the user now enters 42, the question will be reposed over and over again. You can use more sophisticated \*(C`allow\*(C'\fR handlers (even subroutines can be used). The \*(C`allow\*(C'\fR handler is implemented using ​\*(C`Params::Check\*(C'\fR's \f(CW\*(C`allow\*(C'\fR function. Check its manpage for details.

an elaborate ask_yn sample​ ### ask a user if he likes cookies. Default to a sensible 'yes' ​ ### and inform him first what cookies are. ​ $bool = $term−>ask_yn( prompt => 'Do you like cookies?', ​ default => 'y', ​ print_me => 'Cookies are LOVELY!!!' ); would print: ​ Cookies are LOVELY!!! ​ Do you like cookies? [Y/n]: If a user then simply hits \*(C`enter\*(C'\fR, agreeing with the default, ​$bool would be set to \*(C`true\*(C'\fR. (Simply hitting 'y' would also return \*(C`true\*(C'\fR. Hitting 'n' would return \f(CW\*(C`false\*(C'\fR) We could later retrieve this interaction by printing out the Q&A history as follows: ​ print $term−>history_as_string; which would then print: ​ Cookies are LOVELY!!! ​ Do you like cookies? [Y/n]: y There's a chance we're doing this non-interactively, because a console is missing, the user indicated he just wanted the defaults, etc. In this case, simply setting $Term::UI::AUTOREPLY to true, will return from every question with the default answer set for the question. Do note that if \*(C`AUTOREPLY\*(C'\fR is true, and no default is set, \f(CW\*(C`Term::UI\*(C'\fR will warn about this and return \*(C`undef\*(C'\fR.

See Also\*(C`Params::Check\*(C'\fR, \f(CW\*(C`Term::ReadLine\*(C'\fR, \f(CW\*(C`Term::UI::History\*(C'\fR

BUG REPORTSPlease report bugs or other issues to <bug−term−ui@rt.cpan.org<gt>.

AUTHORThis module by Jos Boumans <kane@cpan.org>.

COPYRIGHTThis library is free software; you may redistribute and/or modify it under the same terms as Perl itself.
0
Johanes Gumabo
Data Size   :   39,533 byte
man-Term::UI.3pmBuild   :   2024-12-05, 20:55   :  
Visitor Screen   :   x
Visitor Counter ( page / site )   :   3 / 167,719
Visitor ID   :     :  
Visitor IP   :   18.217.10.152   :  
Visitor Provider   :   AMAZON-02   :  
Provider Position ( lat x lon )   :   39.962500 x -83.006100   :   x
Provider Accuracy Radius ( km )   :   1000   :  
Provider City   :   Columbus   :  
Provider Province   :   Ohio ,   :   ,
Provider Country   :   United States   :  
Provider Continent   :   North America   :  
Visitor Recorder   :   Version   :  
Visitor Recorder   :   Library   :  
Online Linux Manual Page   :   Version   :   Online Linux Manual Page - Fedora.40 - march=x86-64 - mtune=generic - 24.12.05
Online Linux Manual Page   :   Library   :   lib_c - 24.10.03 - march=x86-64 - mtune=generic - Fedora.40
Online Linux Manual Page   :   Library   :   lib_m - 24.10.03 - march=x86-64 - mtune=generic - Fedora.40
Data Base   :   Version   :   Online Linux Manual Page Database - 24.04.13 - march=x86-64 - mtune=generic - fedora-38
Data Base   :   Library   :   lib_c - 23.02.07 - march=x86-64 - mtune=generic - fedora.36

Very long time ago, I have the best tutor, Wenzel Svojanovsky . If someone knows the email address of Wenzel Svojanovsky , please send an email to johanes_gumabo@yahoo.co.id .
If error, please print screen and send to johanes_gumabo@yahoo.co.id
Under development. Support me via PayPal.

ERROR : Need New Coding :         (parse_manual_page_|249|Term::UI.3pm|36/37|el══─{─══.|.el══─{─══. ds -- \|\(em\| )         (htmlprn|149|Term::UI.3pm|36/37|.el══─{─══. ds --  —  |.el══─{─══. ds -- \|\(em\| )         (parse_manual_page_|249|Term::UI.3pm|41|br══─}─══|'br══─}─══ )         (htmlprn|149|Term::UI.3pm|41|'br══─}─══ |'br══─}─══ )         (rof_nr_x|149|Term::UI.3pm|51/52|\nF|.ie \nF ══─{─══. de IX )         (rof_unit_scale_px|41|Term::UI.3pm|51/52|F|.ie \nF ══─{─══. de IX )         (rof_if|19|Term::UI.3pm|51/52|\nF|.ie \nF ══─{─══. de IX )         (htmlprn|149|Term::UI.3pm|51/52|.ie \nF ══─{─══. de IX|.ie \nF ══─{─══. de IX )         (rof_escape_sequence|91|Term::UI.3pm|53|\$1\t\\n%\t"\\$2" |. tm Index:\\$1\t\\n%\t"\\$2" )         (parse_manual_page_|249|Term::UI.3pm|57|══─}─══|.══─}─══ )         (htmlprn|149|Term::UI.3pm|57|.══─}─══ |.══─}─══ )         (rof_escape_sequence|91|Term::UI.3pm|172|\*(C`Term::UI\*(C'\fR is a transparent way of eliminating the overhead of having |\&\f(CW\*(C`Term::UI\*(C'\fR is a transparent way of eliminating the overhead of having )         (rof_escape_sequence|91|Term::UI.3pm|177|\*(C`Term::UI\*(C'\fR will \s-1DWYM\s0. |the user can pick from and a default and \f(CW\*(C`Term::UI\*(C'\fR will \s-1DWYM\s0. )         (rof_escape_sequence|91|Term::UI.3pm|182|\*(C`Term::UI\*(C'\fR places itself at the back of the \f(CW\*(C`Term::ReadLine\*(C'\fR |\&\f(CW\*(C`Term::UI\*(C'\fR places itself at the back of the \f(CW\*(C`Term::ReadLine\*(C'\fR )         (rof_escape_sequence|91|Term::UI.3pm|185|\*(C`Term::UI\*(C'\fR uses \f(CW\*(C`Term::UI::History\*(C'\fR to record all interactions |\&\f(CW\*(C`Term::UI\*(C'\fR uses \f(CW\*(C`Term::UI::History\*(C'\fR to record all interactions )         (rof_escape_sequence|91|Term::UI.3pm|188|\*(C`Term::UI::History\*(C'\fR manpage or the \f(CW\*(C`SYNOPSIS\*(C'\fR for details. |\&\f(CW\*(C`Term::UI::History\*(C'\fR manpage or the \f(CW\*(C`SYNOPSIS\*(C'\fR for details. )         (rof_escape_sequence|91|Term::UI.3pm|194|\*(C`get_reply\*(C'\fR asks a user a question, and then returns the reply to the |\&\f(CW\*(C`get_reply\*(C'\fR asks a user a question, and then returns the reply to the )         (rof_escape_sequence|91|Term::UI.3pm|199|\*(C`choices\*(C'\fR argument. If the answer is not in the list of choices |using the \f(CW\*(C`choices\*(C'\fR argument. If the answer is not in the list of choices )         (rof_escape_sequence|91|Term::UI.3pm|202|\*(C`default\*(C'\fR answer, this will be returned when either |If you provide a \f(CW\*(C`default\*(C'\fR answer, this will be returned when either )         (rof_escape_sequence|91|Term::UI.3pm|203|\*(C`GLOBAL VARIABLES\*(C'\fR section further |\&\f(CW$AUTOREPLY\fR is set to true, (see the \f(CW\*(C`GLOBAL VARIABLES\*(C'\fR section further )         (rof_escape_sequence|91|Term::UI.3pm|204|\*(C`enter\*(C'\fR. |below), or when the user just hits \f(CW\*(C`enter\*(C'\fR. )         (rof_escape_sequence|91|Term::UI.3pm|207|\*(C`multi\*(C'\fR flag. Note that a list of answers will then be |toggling the \f(CW\*(C`multi\*(C'\fR flag. Note that a list of answers will then be )         (rof_escape_sequence|91|Term::UI.3pm|210|\*(C`allow\*(C'\fR hander, you can yourself validate the answer |By specifying an \f(CW\*(C`allow\*(C'\fR hander, you can yourself validate the answer )         (rof_escape_sequence|91|Term::UI.3pm|211|\*(C`allow\*(C'\fR |a user gives. This can be any of the types that the Params::Check \f(CW\*(C`allow\*(C'\fR )         (rof_escape_sequence|91|Term::UI.3pm|214|\*(C`print_me\*(C'\fR argument, which is |Finally, you have the option of adding a \f(CW\*(C`print_me\*(C'\fR argument, which is )         (rof_escape_sequence|91|Term::UI.3pm|218|\*(C`Term::UI\->history_as_string\*(C'\fR function. |\&\f(CW\*(C`Term::UI\->history_as_string\*(C'\fR function. )         (rof_escape_sequence|91|Term::UI.3pm|220|\*(C`EXAMPLES\*(C'\fR section for samples of how to use this function. |See the \f(CW\*(C`EXAMPLES\*(C'\fR section for samples of how to use this function. )         (rof_escape_sequence|91|Term::UI.3pm|224|\*(C`yes\*(C'\fR or \f(CW\*(C`no\*(C'\fR question to the user, returning a boolean |Asks a simple \f(CW\*(C`yes\*(C'\fR or \f(CW\*(C`no\*(C'\fR question to the user, returning a boolean )         (rof_escape_sequence|91|Term::UI.3pm|225|\*(C`true\*(C'\fR or \f(CW\*(C`false\*(C'\fR to the caller. |indicating \f(CW\*(C`true\*(C'\fR or \f(CW\*(C`false\*(C'\fR to the caller. )         (rof_escape_sequence|91|Term::UI.3pm|227|\*(C`default\*(C'\fR answer will automatically returned, if the user hits |The \f(CW\*(C`default\*(C'\fR answer will automatically returned, if the user hits )         (rof_escape_sequence|91|Term::UI.3pm|228|\*(C`enter\*(C'\fR or if \f(CW$AUTOREPLY\fR is set to true. See the \f(CW\*(C`GLOBAL VARIABLES\*(C'\fR |\&\f(CW\*(C`enter\*(C'\fR or if \f(CW$AUTOREPLY\fR is set to true. See the \f(CW\*(C`GLOBAL VARIABLES\*(C'\fR )         (rof_escape_sequence|91|Term::UI.3pm|231|\*(C`print_me\*(C'\fR argument, which is |Also, you have the option of adding a \f(CW\*(C`print_me\*(C'\fR argument, which is )         (rof_escape_sequence|91|Term::UI.3pm|235|\*(C`Term::UI\->history_as_string\*(C'\fR function. |\&\f(CW\*(C`Term::UI\->history_as_string\*(C'\fR function. )         (rof_escape_sequence|91|Term::UI.3pm|237|\*(C`EXAMPLES\*(C'\fR section for samples of how to use this function. |See the \f(CW\*(C`EXAMPLES\*(C'\fR section for samples of how to use this function. )         (rof_escape_sequence|91|Term::UI.3pm|241|\*(C`parse_options\*(C'\fR will convert all options given from an input string |\&\f(CW\*(C`parse_options\*(C'\fR will convert all options given from an input string )         (rof_escape_sequence|91|Term::UI.3pm|269|\*(C`\-\*(C'\fR to |As you can see, you can either use a single or a double \f(CW\*(C`\-\*(C'\fR to )         (rof_escape_sequence|91|Term::UI.3pm|271|\*(C`no\-\*(C'\fR and do not give it a value, it |If you prefix an option with \f(CW\*(C`no\-\*(C'\fR and do not give it a value, it )         (rof_escape_sequence|91|Term::UI.3pm|279|\*(C`Term::UI::History\->history_as_string\*(C'\fR. |Convenience wrapper around \f(CW\*(C`Term::UI::History\->history_as_string\*(C'\fR. )         (rof_escape_sequence|91|Term::UI.3pm|281|\*(C`Term::UI::History\*(C'\fR man page for details. |Consult the \f(CW\*(C`Term::UI::History\*(C'\fR man page for details. )         (rof_escape_sequence|91|Term::UI.3pm|307|\*(C`Invalid selection, please try again: \*(C'\fR |The default is \f(CW\*(C`Invalid selection, please try again: \*(C'\fR )         (rof_escape_sequence|91|Term::UI.3pm|312|\*(C`Term::UI::History\*(C'\fR manpage |are being sent to. Please consult the \f(CW\*(C`Term::UI::History\*(C'\fR manpage )         (rof_escape_sequence|91|Term::UI.3pm|351|\*(C`Term::UI\*(C'\fR will repose |\&\f(CW$reply\fR will hold one of the choices presented. \f(CW\*(C`Term::UI\*(C'\fR will repose )         (rof_escape_sequence|91|Term::UI.3pm|354|\*(C`GLOBAL VARIABLES\*(C'\fR section for details. |variable (see the \f(CW\*(C`GLOBAL VARIABLES\*(C'\fR section for details. )         (rof_escape_sequence|91|Term::UI.3pm|375|\*(C`enter\*(C'\fR |Note the default answer after the prompt. A user can now just hit \f(CW\*(C`enter\*(C'\fR )         (rof_escape_sequence|91|Term::UI.3pm|376|\*(-- see the \f(CW\*(C`GLOBAL VARIABLES\*(C'\fR section) and |(or set \f(CW$Term::UI::AUTOREPLY\fR \*(-- see the \f(CW\*(C`GLOBAL VARIABLES\*(C'\fR section) and )         (rof_escape_sequence|91|Term::UI.3pm|401|\*(C`3 2 1\*(C'\fR would fill \f(CW@reply\fR with \f(CW\*(C`blue green red\*(C'\fR |An answer of \f(CW\*(C`3 2 1\*(C'\fR would fill \f(CW@reply\fR with \f(CW\*(C`blue green red\*(C'\fR )         (rof_escape_sequence|91|Term::UI.3pm|414|\*(C`allow\*(C'\fR handlers (even |and over again. You can use more sophisticated \f(CW\*(C`allow\*(C'\fR handlers (even )         (rof_escape_sequence|91|Term::UI.3pm|415|\*(C`allow\*(C'\fR handler is implemented using |subroutines can be used). The \f(CW\*(C`allow\*(C'\fR handler is implemented using )         (rof_escape_sequence|91|Term::UI.3pm|416|\*(C`Params::Check\*(C'\fR's \f(CW\*(C`allow\*(C'\fR function. Check its manpage for details. |\&\f(CW\*(C`Params::Check\*(C'\fR's \f(CW\*(C`allow\*(C'\fR function. Check its manpage for details. )         (rof_escape_sequence|91|Term::UI.3pm|434|\*(C`enter\*(C'\fR, agreeing with the default, |If a user then simply hits \f(CW\*(C`enter\*(C'\fR, agreeing with the default, )         (rof_escape_sequence|91|Term::UI.3pm|435|\*(C`true\*(C'\fR. (Simply hitting 'y' would also |\&\f(CW$bool\fR would be set to \f(CW\*(C`true\*(C'\fR. (Simply hitting 'y' would also )         (rof_escape_sequence|91|Term::UI.3pm|436|\*(C`true\*(C'\fR. Hitting 'n' would return \f(CW\*(C`false\*(C'\fR) |return \f(CW\*(C`true\*(C'\fR. Hitting 'n' would return \f(CW\*(C`false\*(C'\fR) )         (rof_escape_sequence|91|Term::UI.3pm|457|\*(C`AUTOREPLY\*(C'\fR is true, and no default is set, \f(CW\*(C`Term::UI\*(C'\fR |Do note that if \f(CW\*(C`AUTOREPLY\*(C'\fR is true, and no default is set, \f(CW\*(C`Term::UI\*(C'\fR )         (rof_escape_sequence|91|Term::UI.3pm|458|\*(C`undef\*(C'\fR. |will warn about this and return \f(CW\*(C`undef\*(C'\fR. )         (rof_escape_sequence|91|Term::UI.3pm|461|\*(C`Params::Check\*(C'\fR, \f(CW\*(C`Term::ReadLine\*(C'\fR, \f(CW\*(C`Term::UI::History\*(C'\fR |\&\f(CW\*(C`Params::Check\*(C'\fR, \f(CW\*(C`Term::ReadLine\*(C'\fR, \f(CW\*(C`Term::UI::History\*(C'\fR )