rmdir

rmdir FILENAME rmdir Deletes the directory specified by FILENAME if that directory is empty. If it succeeds it returns true; otherwise it returns false and sets $! (errno). If FILENAME is omitted, uses $_ . To remove a directory tree recursively (rm -rf on Unix) look at the rmtree function of the File::Path module.

PerlIO::encoding - encoding layer

NAME SYNOPSIS DESCRIPTION SEE ALSO NAME PerlIO::encoding - encoding layer SYNOPSIS use PerlIO::encoding; open($f, "<:encoding(foo)", "infoo"); open($f, ">:encoding(bar)", "outbar"); use Encode qw(:fallbacks); $PerlIO::encoding::fallback = FB_PERLQQ; DESCRIPTION This PerlIO layer opens a filehandle with a transparent encoding filter. On input, it converts the bytes expected to be in the specified character set and encoding to Perl string data (Unicode and Perl's internal Unicode encod

$FORMAT_LINE_BREAK_CHARACTERS

$FORMAT_LINE_BREAK_CHARACTERS

IO::Socket::INET - Object interface for AF_INET domain sockets

NAME SYNOPSIS DESCRIPTION CONSTRUCTORMETHODS SEE ALSO AUTHOR COPYRIGHT NAME IO::Socket::INET - Object interface for AF_INET domain sockets SYNOPSIS use IO::Socket::INET; DESCRIPTION IO::Socket::INET provides an object interface to creating and using sockets in the AF_INET domain. It is built upon the IO::Socket interface and inherits all the methods defined by IO::Socket. CONSTRUCTOR new ( [ARGS] ) Creates an IO::Socket::INET object, which is a reference to a newly created symbol (see the

perluniintro - Perl Unicode introduction

NAME DESCRIPTIONUnicode Perl's Unicode Support Perl's Unicode Model Unicode and EBCDIC Creating Unicode Handling Unicode Legacy Encodings Unicode I/O Displaying Unicode As Text Special Cases Advanced Topics Miscellaneous Questions With Answers Hexadecimal Notation Further Resources UNICODE IN OLDER PERLS SEE ALSO ACKNOWLEDGMENTS AUTHOR, COPYRIGHT, AND LICENSE NAME perluniintro - Perl Unicode introduction DESCRIPTION This document gives a general idea of Unicode and how to use Unicode in Per

__DATA__

__DATA__ These keywords are documented in Special Literals in perldata.

Pod::Simple::SimpleTree -- parse Pod into a simple parse tree

NAME SYNOPSIS DESCRIPTION METHODS Tree Contents SEE ALSO SUPPORT COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Simple::SimpleTree -- parse Pod into a simple parse tree SYNOPSIS % cat ptest.pod =head1 PIE I like B<pie>! % perl -MPod::Simple::SimpleTree -MData::Dumper -e \ "print Dumper(Pod::Simple::SimpleTree->new->parse_file(shift)->root)" \ ptest.pod $VAR1 = [ 'Document', { 'start_line' => 1 }, [ 'head1', { 'start

$^T

$^T The time at which the program began running, in seconds since the epoch (beginning of 1970). The values returned by the -M, -A, and -C filetests are based on this value.

ExtUtils::MM_VMS - methods to override UN*X behaviour in ExtUtils::MakeMaker

NAME SYNOPSIS DESCRIPTIONMethods always loaded Methods AUTHOR NAME ExtUtils::MM_VMS - methods to override UN*X behaviour in ExtUtils::MakeMaker SYNOPSIS Do not use this directly. Instead, use ExtUtils::MM and it will figure out which MM_* class to use for you. DESCRIPTION See ExtUtils::MM_Unix for a documentation of the methods provided there. This package overrides the implementation of these methods, not the semantics. Methods always loaded wraplist Converts a list into a string wrapped

foreach

foreach These flow-control keywords are documented in Compound Statements in perlsyn.