Skip to content

Revision, modernization, and completion of Term::ReadLine::Perl on CPAN.

Notifications You must be signed in to change notification settings

ezbin/Term-ReadLine-Perl

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Term::ReadLine::Perl - A pure Perl implementation GNU Readline

SYNOPSIS

use Term::ReadLine::Perl;
$term = new Term::ReadLine::Perl 'ProgramName';
while ( defined ($_ = $term->readline('prompt>')) ) {
  ...
}

DESCRIPTION

Overview

This is a implementation of the GNU Readline/History Library written entirely in Perl.

GNU Readline reads lines from an interactive terminal with emacs or vi editing capabilities. It provides as mechanism for saving history of previous input.

This package typically used in command-line interfaces and REPLs (Read, Eval, Print Loops).

INSTALL

To install this module type:

perl Makefile.PL
make
        make test # for interactive testing or
AUTOMATED_TESTING=1 make test
make install # might need sudo make install

For interactive testing try redirect STDIN and/or STDOUT.

LEGALESE

See the contents of README

About

Revision, modernization, and completion of Term::ReadLine::Perl on CPAN.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Perl 99.9%
  • Shell 0.1%