Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NCurses and Perl, any guides? [closed]

Tags:

perl

ncurses

I need to use NCurses, with Perl. I found some very short bits of text about it but no example at all.

Is there anyone aware of any existing guide online?

Thanks!

like image 745
Tommy B. Avatar asked May 25 '10 18:05

Tommy B.


Video Answer


1 Answers

http://metacpan.org/pod/Curses::UI::Tutorial

http://tldp.org/HOWTO/NCURSES-Programming-HOWTO/

The examples from tldp.org are:

http://tldp.org/HOWTO/NCURSES-Programming-HOWTO/ncurses_programs/perl/

Also, from http://www.perl.com/doc/FAQs/FAQ/oldfaq-html/Q3.8.html:

For a good example of using curses with Perl, you might want to pick up a copy of Steven L Kunz's* perl menus'' package (menu.pl'') via anonymous FTP from ``ftp.iastate.edu''. It's in the directory /pub/perl as: menu.pl.v3.1.tar.Z

Another possibility is to use Henk Penning's cterm package, a curses emulation library written in perl. cterm is actually a separate program with which you communicate via a pipe. It is available from ftp.cs.ruu.nl [131.211.80.17] via anonymous ftp. in the directory pub/PERL.

like image 158
DVK Avatar answered Oct 21 '22 10:10

DVK