kill

kill SIGNAL, LIST kill SIGNAL Sends a signal to a list of processes. Returns the number of arguments that were successfully used to signal (which is not necessarily the same as the number of processes actually killed, e.g. where a process group is killed). $cnt = kill 'HUP', $child1, $child2; kill 'KILL', @goners; SIGNAL may be either a signal name (a string) or a signal number. A signal name may start with a SIG prefix, thus FOO and SIGFOO refer to the same signal. The string form of SIGNAL i

Pod::Simple::Methody -- turn Pod::Simple events into method calls

NAME SYNOPSIS DESCRIPTION METHOD CALLING SEE ALSO SUPPORT COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Simple::Methody -- turn Pod::Simple events into method calls SYNOPSIS require 5; use strict; package SomePodFormatter; use base qw(Pod::Simple::Methody); sub handle_text { my($self, $text) = @_; ... } sub start_head1 { my($self, $attrs) = @_; ... } sub end_head1 { my($self) = @_; ... } ...and start_/end_ methods for whatever other events you want to catch. DESCRIPTION This class

Encode::TW - Taiwan-based Chinese Encodings

NAME SYNOPSIS DESCRIPTION NOTES BUGS SEE ALSO NAME Encode::TW - Taiwan-based Chinese Encodings SYNOPSIS use Encode qw/encode decode/; $big5 = encode("big5", $utf8); # loads Encode::TW implicitly $utf8 = decode("big5", $big5); # ditto DESCRIPTION This module implements tradition Chinese charset encodings as used in Taiwan and Hong Kong. Encodings supported are as follows. Canonical Alias Description -------------------------------------------------------------------- big5-eten /\bbig-?5

File::Path - Create or remove directory trees

NAME VERSION SYNOPSIS DESCRIPTIONERROR HANDLING NOTES DIAGNOSTICS SEE ALSO BUGS ACKNOWLEDGEMENTS AUTHORS COPYRIGHT LICENSE NAME File::Path - Create or remove directory trees VERSION This document describes version 2.09 of File::Path, released 2013-01-17. SYNOPSIS use File::Path qw(make_path remove_tree); make_path('foo/bar/baz', '/zug/zwang'); make_path('foo/bar/baz', '/zug/zwang', { verbose => 1, mode => 0711, }); remove_tree('foo/bar/baz', '/zug/zwang'); remove_tree('foo/b

Compress::Zlib - Interface to zlib compression library

NAME SYNOPSIS DESCRIPTIONNotes for users of Compress::Zlib version 1 GZIP INTERFACEExamples Compress::Zlib::memGzip Compress::Zlib::memGunzip COMPRESS/UNCOMPRESS Deflate Interface*($d, $status) = deflateInit( [OPT] )* *($out, $status) = $d->deflate($buffer)* *($out, $status) = $d->flush()* =head2 *($out, $status) = $d->flush($flush_type)* *$status = $d->deflateParams([OPT])* *$d->dict_adler()* *$d->msg()* *$d->total_in()* *$d->total_out()* Example Inflate Interface

File::Spec::Unix - File::Spec for Unix, base for other File::Spec modules

NAME SYNOPSIS DESCRIPTION METHODS COPYRIGHT SEE ALSO NAME File::Spec::Unix - File::Spec for Unix, base for other File::Spec modules SYNOPSIS require File::Spec::Unix; # Done automatically by File::Spec DESCRIPTION Methods for manipulating file specifications. Other File::Spec modules, such as File::Spec::Mac, inherit from File::Spec::Unix and override specific methods. METHODS canonpath() No physical check on the filesystem, but a logical cleanup of a path. On UNIX eliminates successive sla

feature - Perl pragma to enable new features

NAME SYNOPSIS DESCRIPTIONLexical effect no feature AVAILABLE FEATURESThe 'say' feature The 'state' feature The 'switch' feature The 'unicode_strings' feature The 'unicode_eval' and 'evalbytes' features The 'current_sub' feature The 'array_base' feature The 'fc' feature The 'lexical_subs' feature The 'postderef' and 'postderef_qq' features The 'signatures' feature The 'refaliasing' feature The 'bitwise' feature FEATURE BUNDLES IMPLICIT LOADING NAME feature - Perl pragma to enable new featu

default

default These flow-control keywords related to the experimental switch feature are documented in Switch Statements in perlsyn.

endprotoent

endprotoent

Hash::Util - A selection of general-utility hash subroutines

NAME SYNOPSIS DESCRIPTIONRestricted hashes Operating on references to hashes. CAVEATS BUGS AUTHOR SEE ALSO NAME Hash::Util - A selection of general-utility hash subroutines SYNOPSIS # Restricted hashes use Hash::Util qw( fieldhash fieldhashes all_keys lock_keys unlock_keys lock_value unlock_value lock_hash unlock_hash lock_keys_plus hash_locked hash_unlocked