This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
another go; was RE: [perl #49302] [[:print:]] v \p{Print}
[perl5.git] / pod / perlfunc.pod
CommitLineData
a0d0e21e 1=head1 NAME
d74e8afc 2X<function>
a0d0e21e
LW
3
4perlfunc - Perl builtin functions
5
6=head1 DESCRIPTION
7
8The functions in this section can serve as terms in an expression.
9They fall into two major categories: list operators and named unary
10operators. These differ in their precedence relationship with a
11following comma. (See the precedence table in L<perlop>.) List
12operators take more than one argument, while unary operators can never
13take more than one argument. Thus, a comma terminates the argument of
14a unary operator, but merely separates the arguments of a list
15operator. A unary operator generally provides a scalar context to its
2b5ab1e7 16argument, while a list operator may provide either scalar or list
a0d0e21e 17contexts for its arguments. If it does both, the scalar arguments will
5f05dabc 18be first, and the list argument will follow. (Note that there can ever
0f31cffe 19be only one such list argument.) For instance, splice() has three scalar
2b5ab1e7
TC
20arguments followed by a list, whereas gethostbyname() has four scalar
21arguments.
a0d0e21e
LW
22
23In the syntax descriptions that follow, list operators that expect a
24list (and provide list context for the elements of the list) are shown
25with LIST as an argument. Such a list may consist of any combination
26of scalar arguments or list values; the list values will be included
27in the list as if each individual element were interpolated at that
28point in the list, forming a longer single-dimensional list value.
cf264981 29Commas should separate elements of the LIST.
a0d0e21e
LW
30
31Any function in the list below may be used either with or without
32parentheses around its arguments. (The syntax descriptions omit the
5f05dabc 33parentheses.) If you use the parentheses, the simple (but occasionally
19799a22 34surprising) rule is this: It I<looks> like a function, therefore it I<is> a
a0d0e21e
LW
35function, and precedence doesn't matter. Otherwise it's a list
36operator or unary operator, and precedence does matter. And whitespace
37between the function and left parenthesis doesn't count--so you need to
38be careful sometimes:
39
68dc0745 40 print 1+2+4; # Prints 7.
41 print(1+2) + 4; # Prints 3.
42 print (1+2)+4; # Also prints 3!
43 print +(1+2)+4; # Prints 7.
44 print ((1+2)+4); # Prints 7.
a0d0e21e
LW
45
46If you run Perl with the B<-w> switch it can warn you about this. For
47example, the third line above produces:
48
49 print (...) interpreted as function at - line 1.
50 Useless use of integer addition in void context at - line 1.
51
2b5ab1e7
TC
52A few functions take no arguments at all, and therefore work as neither
53unary nor list operators. These include such functions as C<time>
54and C<endpwent>. For example, C<time+86_400> always means
55C<time() + 86_400>.
56
a0d0e21e 57For functions that can be used in either a scalar or list context,
54310121 58nonabortive failure is generally indicated in a scalar context by
a0d0e21e
LW
59returning the undefined value, and in a list context by returning the
60null list.
61
5a964f20
TC
62Remember the following important rule: There is B<no rule> that relates
63the behavior of an expression in list context to its behavior in scalar
64context, or vice versa. It might do two totally different things.
a0d0e21e 65Each operator and function decides which sort of value it would be most
2b5ab1e7 66appropriate to return in scalar context. Some operators return the
5a964f20 67length of the list that would have been returned in list context. Some
a0d0e21e
LW
68operators return the first value in the list. Some operators return the
69last value in the list. Some operators return a count of successful
70operations. In general, they do what you want, unless you want
71consistency.
d74e8afc 72X<context>
a0d0e21e 73
d1be9408 74A named array in scalar context is quite different from what would at
5a964f20
TC
75first glance appear to be a list in scalar context. You can't get a list
76like C<(1,2,3)> into being in scalar context, because the compiler knows
77the context at compile time. It would generate the scalar comma operator
78there, not the list construction version of the comma. That means it
79was never a list to start with.
80
81In general, functions in Perl that serve as wrappers for system calls
f86cebdf 82of the same name (like chown(2), fork(2), closedir(2), etc.) all return
5a964f20
TC
83true when they succeed and C<undef> otherwise, as is usually mentioned
84in the descriptions below. This is different from the C interfaces,
19799a22
GS
85which return C<-1> on failure. Exceptions to this rule are C<wait>,
86C<waitpid>, and C<syscall>. System calls also set the special C<$!>
5a964f20
TC
87variable on failure. Other functions do not, except accidentally.
88
cb1a09d0 89=head2 Perl Functions by Category
d74e8afc 90X<function>
cb1a09d0
AD
91
92Here are Perl's functions (including things that look like
5a964f20 93functions, like some keywords and named operators)
cb1a09d0
AD
94arranged by category. Some functions appear in more
95than one place.
96
13a2d996 97=over 4
cb1a09d0
AD
98
99=item Functions for SCALARs or strings
d74e8afc 100X<scalar> X<string> X<character>
cb1a09d0 101
22fae026 102C<chomp>, C<chop>, C<chr>, C<crypt>, C<hex>, C<index>, C<lc>, C<lcfirst>,
1dc8ecb8 103C<length>, C<oct>, C<ord>, C<pack>, C<q//>, C<qq//>, C<reverse>,
945c54fd 104C<rindex>, C<sprintf>, C<substr>, C<tr///>, C<uc>, C<ucfirst>, C<y///>
cb1a09d0
AD
105
106=item Regular expressions and pattern matching
d74e8afc 107X<regular expression> X<regex> X<regexp>
cb1a09d0 108
ab4f32c2 109C<m//>, C<pos>, C<quotemeta>, C<s///>, C<split>, C<study>, C<qr//>
cb1a09d0
AD
110
111=item Numeric functions
d74e8afc 112X<numeric> X<number> X<trigonometric> X<trigonometry>
cb1a09d0 113
22fae026
TM
114C<abs>, C<atan2>, C<cos>, C<exp>, C<hex>, C<int>, C<log>, C<oct>, C<rand>,
115C<sin>, C<sqrt>, C<srand>
cb1a09d0
AD
116
117=item Functions for real @ARRAYs
d74e8afc 118X<array>
cb1a09d0 119
22fae026 120C<pop>, C<push>, C<shift>, C<splice>, C<unshift>
cb1a09d0
AD
121
122=item Functions for list data
d74e8afc 123X<list>
cb1a09d0 124
1dc8ecb8 125C<grep>, C<join>, C<map>, C<qw//>, C<reverse>, C<sort>, C<unpack>
cb1a09d0
AD
126
127=item Functions for real %HASHes
d74e8afc 128X<hash>
cb1a09d0 129
22fae026 130C<delete>, C<each>, C<exists>, C<keys>, C<values>
cb1a09d0
AD
131
132=item Input and output functions
d74e8afc 133X<I/O> X<input> X<output> X<dbm>
cb1a09d0 134
22fae026
TM
135C<binmode>, C<close>, C<closedir>, C<dbmclose>, C<dbmopen>, C<die>, C<eof>,
136C<fileno>, C<flock>, C<format>, C<getc>, C<print>, C<printf>, C<read>,
0d863452 137C<readdir>, C<rewinddir>, C<say>, C<seek>, C<seekdir>, C<select>, C<syscall>,
22fae026
TM
138C<sysread>, C<sysseek>, C<syswrite>, C<tell>, C<telldir>, C<truncate>,
139C<warn>, C<write>
cb1a09d0
AD
140
141=item Functions for fixed length data or records
142
22fae026 143C<pack>, C<read>, C<syscall>, C<sysread>, C<syswrite>, C<unpack>, C<vec>
cb1a09d0
AD
144
145=item Functions for filehandles, files, or directories
d74e8afc 146X<file> X<filehandle> X<directory> X<pipe> X<link> X<symlink>
cb1a09d0 147
22fae026 148C<-I<X>>, C<chdir>, C<chmod>, C<chown>, C<chroot>, C<fcntl>, C<glob>,
5ff3f7a4 149C<ioctl>, C<link>, C<lstat>, C<mkdir>, C<open>, C<opendir>,
1e278fd9
JH
150C<readlink>, C<rename>, C<rmdir>, C<stat>, C<symlink>, C<sysopen>,
151C<umask>, C<unlink>, C<utime>
cb1a09d0 152
cf264981 153=item Keywords related to the control flow of your Perl program
d74e8afc 154X<control flow>
cb1a09d0 155
98293880
JH
156C<caller>, C<continue>, C<die>, C<do>, C<dump>, C<eval>, C<exit>,
157C<goto>, C<last>, C<next>, C<redo>, C<return>, C<sub>, C<wantarray>
cb1a09d0 158
0d863452
RH
159=item Keywords related to switch
160
36fb85f3 161C<break>, C<continue>, C<given>, C<when>, C<default>
0d863452
RH
162
163(These are only available if you enable the "switch" feature.
164See L<feature> and L<perlsyn/"Switch statements">.)
165
54310121 166=item Keywords related to scoping
cb1a09d0 167
36fb85f3
RGS
168C<caller>, C<import>, C<local>, C<my>, C<our>, C<state>, C<package>,
169C<use>
170
171(C<state> is only available if the "state" feature is enabled. See
172L<feature>.)
cb1a09d0
AD
173
174=item Miscellaneous functions
175
36fb85f3 176C<defined>, C<dump>, C<eval>, C<formline>, C<local>, C<my>, C<our>,
834df1c5 177C<reset>, C<scalar>, C<state>, C<undef>, C<wantarray>
cb1a09d0
AD
178
179=item Functions for processes and process groups
d74e8afc 180X<process> X<pid> X<process id>
cb1a09d0 181
22fae026 182C<alarm>, C<exec>, C<fork>, C<getpgrp>, C<getppid>, C<getpriority>, C<kill>,
1dc8ecb8 183C<pipe>, C<qx//>, C<setpgrp>, C<setpriority>, C<sleep>, C<system>,
22fae026 184C<times>, C<wait>, C<waitpid>
cb1a09d0
AD
185
186=item Keywords related to perl modules
d74e8afc 187X<module>
cb1a09d0 188
22fae026 189C<do>, C<import>, C<no>, C<package>, C<require>, C<use>
cb1a09d0 190
353c6505 191=item Keywords related to classes and object-orientation
d74e8afc 192X<object> X<class> X<package>
cb1a09d0 193
22fae026
TM
194C<bless>, C<dbmclose>, C<dbmopen>, C<package>, C<ref>, C<tie>, C<tied>,
195C<untie>, C<use>
cb1a09d0
AD
196
197=item Low-level socket functions
d74e8afc 198X<socket> X<sock>
cb1a09d0 199
22fae026
TM
200C<accept>, C<bind>, C<connect>, C<getpeername>, C<getsockname>,
201C<getsockopt>, C<listen>, C<recv>, C<send>, C<setsockopt>, C<shutdown>,
737dd4b4 202C<socket>, C<socketpair>
cb1a09d0
AD
203
204=item System V interprocess communication functions
d74e8afc 205X<IPC> X<System V> X<semaphore> X<shared memory> X<memory> X<message>
cb1a09d0 206
22fae026
TM
207C<msgctl>, C<msgget>, C<msgrcv>, C<msgsnd>, C<semctl>, C<semget>, C<semop>,
208C<shmctl>, C<shmget>, C<shmread>, C<shmwrite>
cb1a09d0
AD
209
210=item Fetching user and group info
d74e8afc 211X<user> X<group> X<password> X<uid> X<gid> X<passwd> X</etc/passwd>
cb1a09d0 212
22fae026
TM
213C<endgrent>, C<endhostent>, C<endnetent>, C<endpwent>, C<getgrent>,
214C<getgrgid>, C<getgrnam>, C<getlogin>, C<getpwent>, C<getpwnam>,
215C<getpwuid>, C<setgrent>, C<setpwent>
cb1a09d0
AD
216
217=item Fetching network info
d74e8afc 218X<network> X<protocol> X<host> X<hostname> X<IP> X<address> X<service>
cb1a09d0 219
22fae026
TM
220C<endprotoent>, C<endservent>, C<gethostbyaddr>, C<gethostbyname>,
221C<gethostent>, C<getnetbyaddr>, C<getnetbyname>, C<getnetent>,
222C<getprotobyname>, C<getprotobynumber>, C<getprotoent>,
223C<getservbyname>, C<getservbyport>, C<getservent>, C<sethostent>,
224C<setnetent>, C<setprotoent>, C<setservent>
cb1a09d0
AD
225
226=item Time-related functions
d74e8afc 227X<time> X<date>
cb1a09d0 228
22fae026 229C<gmtime>, C<localtime>, C<time>, C<times>
cb1a09d0 230
37798a01 231=item Functions new in perl5
d74e8afc 232X<perl5>
37798a01 233
834df1c5
SP
234C<abs>, C<bless>, C<break>, C<chomp>, C<chr>, C<continue>, C<default>,
235C<exists>, C<formline>, C<given>, C<glob>, C<import>, C<lc>, C<lcfirst>,
1dc8ecb8 236C<lock>, C<map>, C<my>, C<no>, C<our>, C<prototype>, C<qr//>, C<qw//>, C<qx//>,
834df1c5
SP
237C<readline>, C<readpipe>, C<ref>, C<sub>*, C<sysopen>, C<tie>, C<tied>, C<uc>,
238C<ucfirst>, C<untie>, C<use>, C<when>
37798a01 239
240* - C<sub> was a keyword in perl4, but in perl5 it is an
5a964f20 241operator, which can be used in expressions.
37798a01 242
243=item Functions obsoleted in perl5
244
22fae026 245C<dbmclose>, C<dbmopen>
37798a01 246
cb1a09d0
AD
247=back
248
60f9f73c 249=head2 Portability
d74e8afc 250X<portability> X<Unix> X<portable>
60f9f73c 251
2b5ab1e7
TC
252Perl was born in Unix and can therefore access all common Unix
253system calls. In non-Unix environments, the functionality of some
254Unix system calls may not be available, or details of the available
255functionality may differ slightly. The Perl functions affected
60f9f73c
JH
256by this are:
257
258C<-X>, C<binmode>, C<chmod>, C<chown>, C<chroot>, C<crypt>,
259C<dbmclose>, C<dbmopen>, C<dump>, C<endgrent>, C<endhostent>,
260C<endnetent>, C<endprotoent>, C<endpwent>, C<endservent>, C<exec>,
ef5a6dd7
JH
261C<fcntl>, C<flock>, C<fork>, C<getgrent>, C<getgrgid>, C<gethostbyname>,
262C<gethostent>, C<getlogin>, C<getnetbyaddr>, C<getnetbyname>, C<getnetent>,
54d7b083 263C<getppid>, C<getpgrp>, C<getpriority>, C<getprotobynumber>,
60f9f73c
JH
264C<getprotoent>, C<getpwent>, C<getpwnam>, C<getpwuid>,
265C<getservbyport>, C<getservent>, C<getsockopt>, C<glob>, C<ioctl>,
266C<kill>, C<link>, C<lstat>, C<msgctl>, C<msgget>, C<msgrcv>,
2b5ab1e7 267C<msgsnd>, C<open>, C<pipe>, C<readlink>, C<rename>, C<select>, C<semctl>,
60f9f73c
JH
268C<semget>, C<semop>, C<setgrent>, C<sethostent>, C<setnetent>,
269C<setpgrp>, C<setpriority>, C<setprotoent>, C<setpwent>,
270C<setservent>, C<setsockopt>, C<shmctl>, C<shmget>, C<shmread>,
737dd4b4 271C<shmwrite>, C<socket>, C<socketpair>,
80cbd5ad
JH
272C<stat>, C<symlink>, C<syscall>, C<sysopen>, C<system>,
273C<times>, C<truncate>, C<umask>, C<unlink>,
2b5ab1e7 274C<utime>, C<wait>, C<waitpid>
60f9f73c
JH
275
276For more information about the portability of these functions, see
277L<perlport> and other available platform-specific documentation.
278
cb1a09d0
AD
279=head2 Alphabetical Listing of Perl Functions
280
a0d0e21e
LW
281=over 8
282
5b3c99c0 283=item -X FILEHANDLE
d74e8afc
ITB
284X<-r>X<-w>X<-x>X<-o>X<-R>X<-W>X<-X>X<-O>X<-e>X<-z>X<-s>X<-f>X<-d>X<-l>X<-p>
285X<-S>X<-b>X<-c>X<-t>X<-u>X<-g>X<-k>X<-T>X<-B>X<-M>X<-A>X<-C>
a0d0e21e 286
5b3c99c0 287=item -X EXPR
a0d0e21e 288
5228a96c
SP
289=item -X DIRHANDLE
290
5b3c99c0 291=item -X
a0d0e21e
LW
292
293A file test, where X is one of the letters listed below. This unary
5228a96c
SP
294operator takes one argument, either a filename, a filehandle, or a dirhandle,
295and tests the associated file to see if something is true about it. If the
7660c0ab 296argument is omitted, tests C<$_>, except for C<-t>, which tests STDIN.
19799a22 297Unless otherwise documented, it returns C<1> for true and C<''> for false, or
a0d0e21e 298the undefined value if the file doesn't exist. Despite the funny
d0821a6a 299names, precedence is the same as any other named unary operator. The
a0d0e21e
LW
300operator may be any of:
301
302 -r File is readable by effective uid/gid.
303 -w File is writable by effective uid/gid.
304 -x File is executable by effective uid/gid.
305 -o File is owned by effective uid.
306
307 -R File is readable by real uid/gid.
308 -W File is writable by real uid/gid.
309 -X File is executable by real uid/gid.
310 -O File is owned by real uid.
311
312 -e File exists.
8e7e0aa8
MJD
313 -z File has zero size (is empty).
314 -s File has nonzero size (returns size in bytes).
a0d0e21e
LW
315
316 -f File is a plain file.
317 -d File is a directory.
318 -l File is a symbolic link.
9c4d0f16 319 -p File is a named pipe (FIFO), or Filehandle is a pipe.
a0d0e21e
LW
320 -S File is a socket.
321 -b File is a block special file.
322 -c File is a character special file.
323 -t Filehandle is opened to a tty.
324
325 -u File has setuid bit set.
326 -g File has setgid bit set.
327 -k File has sticky bit set.
328
121910a4 329 -T File is an ASCII text file (heuristic guess).
2cdbc966 330 -B File is a "binary" file (opposite of -T).
a0d0e21e 331
95a3fe12 332 -M Script start time minus file modification time, in days.
a0d0e21e 333 -A Same for access time.
95a3fe12 334 -C Same for inode change time (Unix, may differ for other platforms)
a0d0e21e 335
a0d0e21e
LW
336Example:
337
338 while (<>) {
5b3eff12 339 chomp;
a0d0e21e 340 next unless -f $_; # ignore specials
5a964f20 341 #...
a0d0e21e
LW
342 }
343
5ff3f7a4
GS
344The interpretation of the file permission operators C<-r>, C<-R>,
345C<-w>, C<-W>, C<-x>, and C<-X> is by default based solely on the mode
346of the file and the uids and gids of the user. There may be other
ecae030f
MO
347reasons you can't actually read, write, or execute the file: for
348example network filesystem access controls, ACLs (access control lists),
349read-only filesystems, and unrecognized executable formats. Note
350that the use of these six specific operators to verify if some operation
351is possible is usually a mistake, because it may be open to race
352conditions.
5ff3f7a4 353
2b5ab1e7
TC
354Also note that, for the superuser on the local filesystems, the C<-r>,
355C<-R>, C<-w>, and C<-W> tests always return 1, and C<-x> and C<-X> return 1
5ff3f7a4
GS
356if any execute bit is set in the mode. Scripts run by the superuser
357may thus need to do a stat() to determine the actual mode of the file,
2b5ab1e7 358or temporarily set their effective uid to something else.
5ff3f7a4
GS
359
360If you are using ACLs, there is a pragma called C<filetest> that may
361produce more accurate results than the bare stat() mode bits.
5ff3f7a4
GS
362When under the C<use filetest 'access'> the above-mentioned filetests
363will test whether the permission can (not) be granted using the
468541a8 364access() family of system calls. Also note that the C<-x> and C<-X> may
5ff3f7a4
GS
365under this pragma return true even if there are no execute permission
366bits set (nor any extra execute permission ACLs). This strangeness is
ecae030f
MO
367due to the underlying system calls' definitions. Note also that, due to
368the implementation of C<use filetest 'access'>, the C<_> special
369filehandle won't cache the results of the file tests when this pragma is
370in effect. Read the documentation for the C<filetest> pragma for more
371information.
5ff3f7a4 372
a0d0e21e
LW
373Note that C<-s/a/b/> does not do a negated substitution. Saying
374C<-exp($foo)> still works as expected, however--only single letters
375following a minus are interpreted as file tests.
376
377The C<-T> and C<-B> switches work as follows. The first block or so of the
378file is examined for odd characters such as strange control codes or
61eff3bc 379characters with the high bit set. If too many strange characters (>30%)
cf264981 380are found, it's a C<-B> file; otherwise it's a C<-T> file. Also, any file
a0d0e21e 381containing null in the first block is considered a binary file. If C<-T>
9124316e 382or C<-B> is used on a filehandle, the current IO buffer is examined
19799a22 383rather than the first block. Both C<-T> and C<-B> return true on a null
54310121 384file, or a file at EOF when testing a filehandle. Because you have to
4633a7c4
LW
385read a file to do the C<-T> test, on most occasions you want to use a C<-f>
386against the file first, as in C<next unless -f $file && -T $file>.
a0d0e21e 387
19799a22 388If any of the file tests (or either the C<stat> or C<lstat> operators) are given
28757baa 389the special filehandle consisting of a solitary underline, then the stat
a0d0e21e
LW
390structure of the previous file test (or stat operator) is used, saving
391a system call. (This doesn't work with C<-t>, and you need to remember
392that lstat() and C<-l> will leave values in the stat structure for the
5c9aa243 393symbolic link, not the real file.) (Also, if the stat buffer was filled by
cf264981 394an C<lstat> call, C<-T> and C<-B> will reset it with the results of C<stat _>).
5c9aa243 395Example:
a0d0e21e
LW
396
397 print "Can do.\n" if -r $a || -w _ || -x _;
398
399 stat($filename);
400 print "Readable\n" if -r _;
401 print "Writable\n" if -w _;
402 print "Executable\n" if -x _;
403 print "Setuid\n" if -u _;
404 print "Setgid\n" if -g _;
405 print "Sticky\n" if -k _;
406 print "Text\n" if -T _;
407 print "Binary\n" if -B _;
408
fbb0b3b3
RGS
409As of Perl 5.9.1, as a form of purely syntactic sugar, you can stack file
410test operators, in a way that C<-f -w -x $file> is equivalent to
cf264981 411C<-x $file && -w _ && -f _>. (This is only syntax fancy: if you use
fbb0b3b3
RGS
412the return value of C<-f $file> as an argument to another filetest
413operator, no special magic will happen.)
414
a0d0e21e 415=item abs VALUE
d74e8afc 416X<abs> X<absolute>
a0d0e21e 417
54310121 418=item abs
bbce6d69 419
a0d0e21e 420Returns the absolute value of its argument.
7660c0ab 421If VALUE is omitted, uses C<$_>.
a0d0e21e
LW
422
423=item accept NEWSOCKET,GENERICSOCKET
d74e8afc 424X<accept>
a0d0e21e 425
f86cebdf 426Accepts an incoming socket connect, just as the accept(2) system call
19799a22 427does. Returns the packed address if it succeeded, false otherwise.
2b5ab1e7 428See the example in L<perlipc/"Sockets: Client/Server Communication">.
a0d0e21e 429
8d2a6795
GS
430On systems that support a close-on-exec flag on files, the flag will
431be set for the newly opened file descriptor, as determined by the
432value of $^F. See L<perlvar/$^F>.
433
a0d0e21e 434=item alarm SECONDS
d74e8afc
ITB
435X<alarm>
436X<SIGALRM>
437X<timer>
a0d0e21e 438
54310121 439=item alarm
bbce6d69 440
a0d0e21e 441Arranges to have a SIGALRM delivered to this process after the
cf264981 442specified number of wallclock seconds has elapsed. If SECONDS is not
d400eac8
JH
443specified, the value stored in C<$_> is used. (On some machines,
444unfortunately, the elapsed time may be up to one second less or more
445than you specified because of how seconds are counted, and process
446scheduling may delay the delivery of the signal even further.)
447
448Only one timer may be counting at once. Each call disables the
449previous timer, and an argument of C<0> may be supplied to cancel the
450previous timer without starting a new one. The returned value is the
451amount of time remaining on the previous timer.
a0d0e21e 452
2bc69794
BS
453For delays of finer granularity than one second, the Time::HiRes module
454(from CPAN, and starting from Perl 5.8 part of the standard
455distribution) provides ualarm(). You may also use Perl's four-argument
456version of select() leaving the first three arguments undefined, or you
457might be able to use the C<syscall> interface to access setitimer(2) if
458your system supports it. See L<perlfaq8> for details.
2b5ab1e7 459
68f8bed4
JH
460It is usually a mistake to intermix C<alarm> and C<sleep> calls.
461(C<sleep> may be internally implemented in your system with C<alarm>)
a0d0e21e 462
19799a22
GS
463If you want to use C<alarm> to time out a system call you need to use an
464C<eval>/C<die> pair. You can't rely on the alarm causing the system call to
f86cebdf 465fail with C<$!> set to C<EINTR> because Perl sets up signal handlers to
19799a22 466restart system calls on some systems. Using C<eval>/C<die> always works,
5a964f20 467modulo the caveats given in L<perlipc/"Signals">.
ff68c719 468
469 eval {
f86cebdf 470 local $SIG{ALRM} = sub { die "alarm\n" }; # NB: \n required
36477c24 471 alarm $timeout;
ff68c719 472 $nread = sysread SOCKET, $buffer, $size;
36477c24 473 alarm 0;
ff68c719 474 };
ff68c719 475 if ($@) {
f86cebdf 476 die unless $@ eq "alarm\n"; # propagate unexpected errors
ff68c719 477 # timed out
478 }
479 else {
480 # didn't
481 }
482
91d81acc
JH
483For more information see L<perlipc>.
484
a0d0e21e 485=item atan2 Y,X
d74e8afc 486X<atan2> X<arctangent> X<tan> X<tangent>
a0d0e21e
LW
487
488Returns the arctangent of Y/X in the range -PI to PI.
489
ca6e1c26 490For the tangent operation, you may use the C<Math::Trig::tan>
28757baa 491function, or use the familiar relation:
492
493 sub tan { sin($_[0]) / cos($_[0]) }
494
a1021d57
RGS
495The return value for C<atan2(0,0)> is implementation-defined; consult
496your atan2(3) manpage for more information.
bf5f1b4c 497
a0d0e21e 498=item bind SOCKET,NAME
d74e8afc 499X<bind>
a0d0e21e
LW
500
501Binds a network address to a socket, just as the bind system call
19799a22 502does. Returns true if it succeeded, false otherwise. NAME should be a
4633a7c4
LW
503packed address of the appropriate type for the socket. See the examples in
504L<perlipc/"Sockets: Client/Server Communication">.
a0d0e21e 505
fae2c0fb 506=item binmode FILEHANDLE, LAYER
d74e8afc 507X<binmode> X<binary> X<text> X<DOS> X<Windows>
1c1fc3ea 508
a0d0e21e
LW
509=item binmode FILEHANDLE
510
1cbfc93d
NIS
511Arranges for FILEHANDLE to be read or written in "binary" or "text"
512mode on systems where the run-time libraries distinguish between
513binary and text files. If FILEHANDLE is an expression, the value is
514taken as the name of the filehandle. Returns true on success,
b5fe5ca2 515otherwise it returns C<undef> and sets C<$!> (errno).
1cbfc93d 516
d807c6f4
JH
517On some systems (in general, DOS and Windows-based systems) binmode()
518is necessary when you're not working with a text file. For the sake
519of portability it is a good idea to always use it when appropriate,
520and to never use it when it isn't appropriate. Also, people can
521set their I/O to be by default UTF-8 encoded Unicode, not bytes.
522
523In other words: regardless of platform, use binmode() on binary data,
524like for example images.
525
526If LAYER is present it is a single string, but may contain multiple
527directives. The directives alter the behaviour of the file handle.
528When LAYER is present using binmode on text file makes sense.
529
fae2c0fb 530If LAYER is omitted or specified as C<:raw> the filehandle is made
0226bbdb
NIS
531suitable for passing binary data. This includes turning off possible CRLF
532translation and marking it as bytes (as opposed to Unicode characters).
749683d2 533Note that, despite what may be implied in I<"Programming Perl"> (the
165a9987
PJ
534Camel) or elsewhere, C<:raw> is I<not> simply the inverse of C<:crlf>
535-- other layers which would affect the binary nature of the stream are
0226bbdb
NIS
536I<also> disabled. See L<PerlIO>, L<perlrun> and the discussion about the
537PERLIO environment variable.
01e6739c 538
d807c6f4
JH
539The C<:bytes>, C<:crlf>, and C<:utf8>, and any other directives of the
540form C<:...>, are called I/O I<layers>. The C<open> pragma can be used to
541establish default I/O layers. See L<open>.
542
fae2c0fb
RGS
543I<The LAYER parameter of the binmode() function is described as "DISCIPLINE"
544in "Programming Perl, 3rd Edition". However, since the publishing of this
545book, by many known as "Camel III", the consensus of the naming of this
546functionality has moved from "discipline" to "layer". All documentation
547of this version of Perl therefore refers to "layers" rather than to
548"disciplines". Now back to the regularly scheduled documentation...>
549
6902c96a
T
550To mark FILEHANDLE as UTF-8, use C<:utf8> or C<:encoding(utf8)>.
551C<:utf8> just marks the data as UTF-8 without further checking,
552while C<:encoding(utf8)> checks the data for actually being valid
553UTF-8. More details can be found in L<PerlIO::encoding>.
1cbfc93d 554
ed53a2bb 555In general, binmode() should be called after open() but before any I/O
01e6739c
NIS
556is done on the filehandle. Calling binmode() will normally flush any
557pending buffered output data (and perhaps pending input data) on the
fae2c0fb 558handle. An exception to this is the C<:encoding> layer that
01e6739c 559changes the default character encoding of the handle, see L<open>.
fae2c0fb 560The C<:encoding> layer sometimes needs to be called in
3874323d
JH
561mid-stream, and it doesn't flush the stream. The C<:encoding>
562also implicitly pushes on top of itself the C<:utf8> layer because
563internally Perl will operate on UTF-8 encoded Unicode characters.
16fe6d59 564
19799a22 565The operating system, device drivers, C libraries, and Perl run-time
30168b04
GS
566system all work together to let the programmer treat a single
567character (C<\n>) as the line terminator, irrespective of the external
568representation. On many operating systems, the native text file
569representation matches the internal representation, but on some
570platforms the external representation of C<\n> is made up of more than
571one character.
572
68bd7414
NIS
573Mac OS, all variants of Unix, and Stream_LF files on VMS use a single
574character to end each line in the external representation of text (even
5e12dbfa 575though that single character is CARRIAGE RETURN on Mac OS and LINE FEED
01e6739c
NIS
576on Unix and most VMS files). In other systems like OS/2, DOS and the
577various flavors of MS-Windows your program sees a C<\n> as a simple C<\cJ>,
578but what's stored in text files are the two characters C<\cM\cJ>. That
579means that, if you don't use binmode() on these systems, C<\cM\cJ>
580sequences on disk will be converted to C<\n> on input, and any C<\n> in
581your program will be converted back to C<\cM\cJ> on output. This is what
582you want for text files, but it can be disastrous for binary files.
30168b04
GS
583
584Another consequence of using binmode() (on some systems) is that
585special end-of-file markers will be seen as part of the data stream.
586For systems from the Microsoft family this means that if your binary
4375e838 587data contains C<\cZ>, the I/O subsystem will regard it as the end of
30168b04
GS
588the file, unless you use binmode().
589
590binmode() is not only important for readline() and print() operations,
591but also when using read(), seek(), sysread(), syswrite() and tell()
592(see L<perlport> for more details). See the C<$/> and C<$\> variables
593in L<perlvar> for how to manually set your input and output
594line-termination sequences.
a0d0e21e 595
4633a7c4 596=item bless REF,CLASSNAME
d74e8afc 597X<bless>
a0d0e21e
LW
598
599=item bless REF
600
2b5ab1e7
TC
601This function tells the thingy referenced by REF that it is now an object
602in the CLASSNAME package. If CLASSNAME is omitted, the current package
19799a22 603is used. Because a C<bless> is often the last thing in a constructor,
2b5ab1e7 604it returns the reference for convenience. Always use the two-argument
cf264981
SP
605version if a derived class might inherit the function doing the blessing.
606See L<perltoot> and L<perlobj> for more about the blessing (and blessings)
607of objects.
a0d0e21e 608
57668c4d 609Consider always blessing objects in CLASSNAMEs that are mixed case.
2b5ab1e7 610Namespaces with all lowercase names are considered reserved for
cf264981 611Perl pragmata. Builtin types have all uppercase names. To prevent
2b5ab1e7
TC
612confusion, you may wish to avoid such package names as well. Make sure
613that CLASSNAME is a true value.
60ad88b8
GS
614
615See L<perlmod/"Perl Modules">.
616
0d863452
RH
617=item break
618
619Break out of a C<given()> block.
620
621This keyword is enabled by the "switch" feature: see L<feature>
622for more information.
623
a0d0e21e 624=item caller EXPR
d74e8afc 625X<caller> X<call stack> X<stack> X<stack trace>
a0d0e21e
LW
626
627=item caller
628
5a964f20 629Returns the context of the current subroutine call. In scalar context,
28757baa 630returns the caller's package name if there is a caller, that is, if
19799a22 631we're in a subroutine or C<eval> or C<require>, and the undefined value
5a964f20 632otherwise. In list context, returns
a0d0e21e 633
ee6b43cc 634 # 0 1 2
748a9306 635 ($package, $filename, $line) = caller;
a0d0e21e
LW
636
637With EXPR, it returns some extra information that the debugger uses to
638print a stack trace. The value of EXPR indicates how many call frames
639to go back before the current one.
640
ee6b43cc 641 # 0 1 2 3 4
f3aa04c2 642 ($package, $filename, $line, $subroutine, $hasargs,
ee6b43cc 643
644 # 5 6 7 8 9 10
b3ca2e83 645 $wantarray, $evaltext, $is_require, $hints, $bitmask, $hinthash)
ee6b43cc 646 = caller($i);
e7ea3e70 647
951ba7fe 648Here $subroutine may be C<(eval)> if the frame is not a subroutine
19799a22 649call, but an C<eval>. In such a case additional elements $evaltext and
7660c0ab 650C<$is_require> are set: C<$is_require> is true if the frame is created by a
19799a22 651C<require> or C<use> statement, $evaltext contains the text of the
277ddfaf 652C<eval EXPR> statement. In particular, for an C<eval BLOCK> statement,
cc1c2e42 653$subroutine is C<(eval)>, but $evaltext is undefined. (Note also that
0fc9dec4
RGS
654each C<use> statement creates a C<require> frame inside an C<eval EXPR>
655frame.) $subroutine may also be C<(unknown)> if this particular
656subroutine happens to have been deleted from the symbol table.
657C<$hasargs> is true if a new instance of C<@_> was set up for the frame.
658C<$hints> and C<$bitmask> contain pragmatic hints that the caller was
659compiled with. The C<$hints> and C<$bitmask> values are subject to change
660between versions of Perl, and are not meant for external use.
748a9306 661
b3ca2e83
NC
662C<$hinthash> is a reference to a hash containing the value of C<%^H> when the
663caller was compiled, or C<undef> if C<%^H> was empty. Do not modify the values
664of this hash, as they are the actual values stored in the optree.
665
748a9306 666Furthermore, when called from within the DB package, caller returns more
7660c0ab 667detailed information: it sets the list variable C<@DB::args> to be the
54310121 668arguments with which the subroutine was invoked.
748a9306 669
7660c0ab 670Be aware that the optimizer might have optimized call frames away before
19799a22 671C<caller> had a chance to get the information. That means that C<caller(N)>
7660c0ab 672might not return information about the call frame you expect it do, for
b76cc8ba 673C<< N > 1 >>. In particular, C<@DB::args> might have information from the
19799a22 674previous time C<caller> was called.
7660c0ab 675
a0d0e21e 676=item chdir EXPR
d74e8afc
ITB
677X<chdir>
678X<cd>
f723aae1 679X<directory, change>
a0d0e21e 680
c4aca7d0
GA
681=item chdir FILEHANDLE
682
683=item chdir DIRHANDLE
684
ce2984c3
PF
685=item chdir
686
ffce7b87 687Changes the working directory to EXPR, if possible. If EXPR is omitted,
0bfc1ec4 688changes to the directory specified by C<$ENV{HOME}>, if set; if not,
ffce7b87 689changes to the directory specified by C<$ENV{LOGDIR}>. (Under VMS, the
b4ad75f0
AMS
690variable C<$ENV{SYS$LOGIN}> is also checked, and used if it is set.) If
691neither is set, C<chdir> does nothing. It returns true upon success,
692false otherwise. See the example under C<die>.
a0d0e21e 693
c4aca7d0
GA
694On systems that support fchdir, you might pass a file handle or
695directory handle as argument. On systems that don't support fchdir,
696passing handles produces a fatal error at run time.
697
a0d0e21e 698=item chmod LIST
d74e8afc 699X<chmod> X<permission> X<mode>
a0d0e21e
LW
700
701Changes the permissions of a list of files. The first element of the
4633a7c4 702list must be the numerical mode, which should probably be an octal
4ad40acf 703number, and which definitely should I<not> be a string of octal digits:
2f9daede 704C<0644> is okay, C<'0644'> is not. Returns the number of files
dc848c6f 705successfully changed. See also L</oct>, if all you have is a string.
a0d0e21e
LW
706
707 $cnt = chmod 0755, 'foo', 'bar';
708 chmod 0755, @executables;
f86cebdf
GS
709 $mode = '0644'; chmod $mode, 'foo'; # !!! sets mode to
710 # --w----r-T
2f9daede
TP
711 $mode = '0644'; chmod oct($mode), 'foo'; # this is better
712 $mode = 0644; chmod $mode, 'foo'; # this is best
a0d0e21e 713
c4aca7d0
GA
714On systems that support fchmod, you might pass file handles among the
715files. On systems that don't support fchmod, passing file handles
345da378
GA
716produces a fatal error at run time. The file handles must be passed
717as globs or references to be recognized. Barewords are considered
718file names.
c4aca7d0
GA
719
720 open(my $fh, "<", "foo");
721 my $perm = (stat $fh)[2] & 07777;
722 chmod($perm | 0600, $fh);
723
ca6e1c26
JH
724You can also import the symbolic C<S_I*> constants from the Fcntl
725module:
726
727 use Fcntl ':mode';
728
729 chmod S_IRWXU|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH, @executables;
730 # This is identical to the chmod 0755 of the above example.
731
a0d0e21e 732=item chomp VARIABLE
d74e8afc 733X<chomp> X<INPUT_RECORD_SEPARATOR> X<$/> X<newline> X<eol>
a0d0e21e 734
313c9f5c 735=item chomp( LIST )
a0d0e21e
LW
736
737=item chomp
738
2b5ab1e7
TC
739This safer version of L</chop> removes any trailing string
740that corresponds to the current value of C<$/> (also known as
28757baa 741$INPUT_RECORD_SEPARATOR in the C<English> module). It returns the total
742number of characters removed from all its arguments. It's often used to
743remove the newline from the end of an input record when you're worried
2b5ab1e7
TC
744that the final record may be missing its newline. When in paragraph
745mode (C<$/ = "">), it removes all trailing newlines from the string.
4c5a6083
GS
746When in slurp mode (C<$/ = undef>) or fixed-length record mode (C<$/> is
747a reference to an integer or the like, see L<perlvar>) chomp() won't
b76cc8ba 748remove anything.
19799a22 749If VARIABLE is omitted, it chomps C<$_>. Example:
a0d0e21e
LW
750
751 while (<>) {
752 chomp; # avoid \n on last field
753 @array = split(/:/);
5a964f20 754 # ...
a0d0e21e
LW
755 }
756
4bf21a6d
RD
757If VARIABLE is a hash, it chomps the hash's values, but not its keys.
758
a0d0e21e
LW
759You can actually chomp anything that's an lvalue, including an assignment:
760
761 chomp($cwd = `pwd`);
762 chomp($answer = <STDIN>);
763
764If you chomp a list, each element is chomped, and the total number of
765characters removed is returned.
766
15e44fd8
RGS
767Note that parentheses are necessary when you're chomping anything
768that is not a simple variable. This is because C<chomp $cwd = `pwd`;>
769is interpreted as C<(chomp $cwd) = `pwd`;>, rather than as
770C<chomp( $cwd = `pwd` )> which you might expect. Similarly,
771C<chomp $a, $b> is interpreted as C<chomp($a), $b> rather than
772as C<chomp($a, $b)>.
773
a0d0e21e 774=item chop VARIABLE
d74e8afc 775X<chop>
a0d0e21e 776
313c9f5c 777=item chop( LIST )
a0d0e21e
LW
778
779=item chop
780
781Chops off the last character of a string and returns the character
5b3eff12 782chopped. It is much more efficient than C<s/.$//s> because it neither
7660c0ab 783scans nor copies the string. If VARIABLE is omitted, chops C<$_>.
4bf21a6d
RD
784If VARIABLE is a hash, it chops the hash's values, but not its keys.
785
5b3eff12 786You can actually chop anything that's an lvalue, including an assignment.
a0d0e21e
LW
787
788If you chop a list, each element is chopped. Only the value of the
19799a22 789last C<chop> is returned.
a0d0e21e 790
19799a22 791Note that C<chop> returns the last character. To return all but the last
748a9306
LW
792character, use C<substr($string, 0, -1)>.
793
15e44fd8
RGS
794See also L</chomp>.
795
a0d0e21e 796=item chown LIST
d74e8afc 797X<chown> X<owner> X<user> X<group>
a0d0e21e
LW
798
799Changes the owner (and group) of a list of files. The first two
19799a22
GS
800elements of the list must be the I<numeric> uid and gid, in that
801order. A value of -1 in either position is interpreted by most
802systems to leave that value unchanged. Returns the number of files
803successfully changed.
a0d0e21e
LW
804
805 $cnt = chown $uid, $gid, 'foo', 'bar';
806 chown $uid, $gid, @filenames;
807
c4aca7d0
GA
808On systems that support fchown, you might pass file handles among the
809files. On systems that don't support fchown, passing file handles
345da378
GA
810produces a fatal error at run time. The file handles must be passed
811as globs or references to be recognized. Barewords are considered
812file names.
c4aca7d0 813
54310121 814Here's an example that looks up nonnumeric uids in the passwd file:
a0d0e21e
LW
815
816 print "User: ";
19799a22 817 chomp($user = <STDIN>);
5a964f20 818 print "Files: ";
19799a22 819 chomp($pattern = <STDIN>);
a0d0e21e
LW
820
821 ($login,$pass,$uid,$gid) = getpwnam($user)
822 or die "$user not in passwd file";
823
5a964f20 824 @ary = glob($pattern); # expand filenames
a0d0e21e
LW
825 chown $uid, $gid, @ary;
826
54310121 827On most systems, you are not allowed to change the ownership of the
4633a7c4
LW
828file unless you're the superuser, although you should be able to change
829the group to any of your secondary groups. On insecure systems, these
830restrictions may be relaxed, but this is not a portable assumption.
19799a22
GS
831On POSIX systems, you can detect this condition this way:
832
833 use POSIX qw(sysconf _PC_CHOWN_RESTRICTED);
834 $can_chown_giveaway = not sysconf(_PC_CHOWN_RESTRICTED);
4633a7c4 835
a0d0e21e 836=item chr NUMBER
d74e8afc 837X<chr> X<character> X<ASCII> X<Unicode>
a0d0e21e 838
54310121 839=item chr
bbce6d69 840
a0d0e21e 841Returns the character represented by that NUMBER in the character set.
a0ed51b3 842For example, C<chr(65)> is C<"A"> in either ASCII or Unicode, and
2575c402 843chr(0x263a) is a Unicode smiley face.
aaa68c4a 844
8a064bd6 845Negative values give the Unicode replacement character (chr(0xfffd)),
5f0135eb 846except under the L<bytes> pragma, where low eight bits of the value
8a064bd6
JH
847(truncated to an integer) are used.
848
974da8e5
JH
849If NUMBER is omitted, uses C<$_>.
850
b76cc8ba 851For the reverse, use L</ord>.
a0d0e21e 852
2575c402
JW
853Note that characters from 128 to 255 (inclusive) are by default
854internally not encoded as UTF-8 for backward compatibility reasons.
974da8e5 855
2575c402 856See L<perlunicode> for more about Unicode.
bbce6d69 857
a0d0e21e 858=item chroot FILENAME
d74e8afc 859X<chroot> X<root>
a0d0e21e 860
54310121 861=item chroot
bbce6d69 862
5a964f20 863This function works like the system call by the same name: it makes the
4633a7c4 864named directory the new root directory for all further pathnames that
951ba7fe 865begin with a C</> by your process and all its children. (It doesn't
28757baa 866change your current working directory, which is unaffected.) For security
4633a7c4 867reasons, this call is restricted to the superuser. If FILENAME is
19799a22 868omitted, does a C<chroot> to C<$_>.
a0d0e21e
LW
869
870=item close FILEHANDLE
d74e8afc 871X<close>
a0d0e21e 872
6a518fbc
TP
873=item close
874
e0f13c26
RGS
875Closes the file or pipe associated with the file handle, flushes the IO
876buffers, and closes the system file descriptor. Returns true if those
877operations have succeeded and if no error was reported by any PerlIO
878layer. Closes the currently selected filehandle if the argument is
879omitted.
fb73857a 880
881You don't have to close FILEHANDLE if you are immediately going to do
19799a22
GS
882another C<open> on it, because C<open> will close it for you. (See
883C<open>.) However, an explicit C<close> on an input file resets the line
884counter (C<$.>), while the implicit close done by C<open> does not.
fb73857a 885
dede8123
RGS
886If the file handle came from a piped open, C<close> will additionally
887return false if one of the other system calls involved fails, or if the
fb73857a 888program exits with non-zero status. (If the only problem was that the
dede8123 889program exited non-zero, C<$!> will be set to C<0>.) Closing a pipe
2b5ab1e7 890also waits for the process executing on the pipe to complete, in case you
b76cc8ba 891want to look at the output of the pipe afterwards, and
e5218da5
GA
892implicitly puts the exit status value of that command into C<$?> and
893C<${^CHILD_ERROR_NATIVE}>.
5a964f20 894
73689b13
GS
895Prematurely closing the read end of a pipe (i.e. before the process
896writing to it at the other end has closed it) will result in a
897SIGPIPE being delivered to the writer. If the other end can't
898handle that, be sure to read all the data before closing the pipe.
899
fb73857a 900Example:
a0d0e21e 901
fb73857a 902 open(OUTPUT, '|sort >foo') # pipe to sort
903 or die "Can't start sort: $!";
5a964f20 904 #... # print stuff to output
fb73857a 905 close OUTPUT # wait for sort to finish
906 or warn $! ? "Error closing sort pipe: $!"
907 : "Exit status $? from sort";
908 open(INPUT, 'foo') # get sort's results
909 or die "Can't open 'foo' for input: $!";
a0d0e21e 910
5a964f20
TC
911FILEHANDLE may be an expression whose value can be used as an indirect
912filehandle, usually the real filehandle name.
a0d0e21e
LW
913
914=item closedir DIRHANDLE
d74e8afc 915X<closedir>
a0d0e21e 916
19799a22 917Closes a directory opened by C<opendir> and returns the success of that
5a964f20
TC
918system call.
919
a0d0e21e 920=item connect SOCKET,NAME
d74e8afc 921X<connect>
a0d0e21e
LW
922
923Attempts to connect to a remote socket, just as the connect system call
19799a22 924does. Returns true if it succeeded, false otherwise. NAME should be a
4633a7c4
LW
925packed address of the appropriate type for the socket. See the examples in
926L<perlipc/"Sockets: Client/Server Communication">.
a0d0e21e 927
cb1a09d0 928=item continue BLOCK
d74e8afc 929X<continue>
cb1a09d0 930
0d863452
RH
931=item continue
932
cf264981
SP
933C<continue> is actually a flow control statement rather than a function. If
934there is a C<continue> BLOCK attached to a BLOCK (typically in a C<while> or
98293880
JH
935C<foreach>), it is always executed just before the conditional is about to
936be evaluated again, just like the third part of a C<for> loop in C. Thus
cb1a09d0
AD
937it can be used to increment a loop variable, even when the loop has been
938continued via the C<next> statement (which is similar to the C C<continue>
939statement).
940
98293880 941C<last>, C<next>, or C<redo> may appear within a C<continue>
19799a22
GS
942block. C<last> and C<redo> will behave as if they had been executed within
943the main block. So will C<next>, but since it will execute a C<continue>
1d2dff63
GS
944block, it may be more entertaining.
945
946 while (EXPR) {
947 ### redo always comes here
948 do_something;
949 } continue {
950 ### next always comes here
951 do_something_else;
952 # then back the top to re-check EXPR
953 }
954 ### last always comes here
955
956Omitting the C<continue> section is semantically equivalent to using an
19799a22 957empty one, logically enough. In that case, C<next> goes directly back
1d2dff63
GS
958to check the condition at the top of the loop.
959
0d863452
RH
960If the "switch" feature is enabled, C<continue> is also a
961function that will break out of the current C<when> or C<default>
962block, and fall through to the next case. See L<feature> and
963L<perlsyn/"Switch statements"> for more information.
964
965
a0d0e21e 966=item cos EXPR
d74e8afc 967X<cos> X<cosine> X<acos> X<arccosine>
a0d0e21e 968
d6217f1e
GS
969=item cos
970
5a964f20 971Returns the cosine of EXPR (expressed in radians). If EXPR is omitted,
7660c0ab 972takes cosine of C<$_>.
a0d0e21e 973
ca6e1c26 974For the inverse cosine operation, you may use the C<Math::Trig::acos()>
28757baa 975function, or use this relation:
976
977 sub acos { atan2( sqrt(1 - $_[0] * $_[0]), $_[0] ) }
978
a0d0e21e 979=item crypt PLAINTEXT,SALT
d74e8afc 980X<crypt> X<digest> X<hash> X<salt> X<plaintext> X<password>
f723aae1 981X<decrypt> X<cryptography> X<passwd> X<encrypt>
a0d0e21e 982
ef2e6798
MS
983Creates a digest string exactly like the crypt(3) function in the C
984library (assuming that you actually have a version there that has not
cf264981 985been extirpated as a potential munitions).
ef2e6798
MS
986
987crypt() is a one-way hash function. The PLAINTEXT and SALT is turned
988into a short string, called a digest, which is returned. The same
989PLAINTEXT and SALT will always return the same string, but there is no
990(known) way to get the original PLAINTEXT from the hash. Small
991changes in the PLAINTEXT or SALT will result in large changes in the
992digest.
993
994There is no decrypt function. This function isn't all that useful for
995cryptography (for that, look for F<Crypt> modules on your nearby CPAN
996mirror) and the name "crypt" is a bit of a misnomer. Instead it is
997primarily used to check if two pieces of text are the same without
998having to transmit or store the text itself. An example is checking
999if a correct password is given. The digest of the password is stored,
cf264981 1000not the password itself. The user types in a password that is
ef2e6798
MS
1001crypt()'d with the same salt as the stored digest. If the two digests
1002match the password is correct.
1003
1004When verifying an existing digest string you should use the digest as
1005the salt (like C<crypt($plain, $digest) eq $digest>). The SALT used
cf264981 1006to create the digest is visible as part of the digest. This ensures
ef2e6798
MS
1007crypt() will hash the new string with the same salt as the digest.
1008This allows your code to work with the standard L<crypt|/crypt> and
1009with more exotic implementations. In other words, do not assume
1010anything about the returned string itself, or how many bytes in the
1011digest matter.
85c16d83
JH
1012
1013Traditionally the result is a string of 13 bytes: two first bytes of
1014the salt, followed by 11 bytes from the set C<[./0-9A-Za-z]>, and only
ef2e6798
MS
1015the first eight bytes of the digest string mattered, but alternative
1016hashing schemes (like MD5), higher level security schemes (like C2),
1017and implementations on non-UNIX platforms may produce different
1018strings.
85c16d83
JH
1019
1020When choosing a new salt create a random two character string whose
1021characters come from the set C<[./0-9A-Za-z]> (like C<join '', ('.',
d3989d75
CW
1022'/', 0..9, 'A'..'Z', 'a'..'z')[rand 64, rand 64]>). This set of
1023characters is just a recommendation; the characters allowed in
1024the salt depend solely on your system's crypt library, and Perl can't
1025restrict what salts C<crypt()> accepts.
e71965be 1026
a0d0e21e 1027Here's an example that makes sure that whoever runs this program knows
cf264981 1028their password:
a0d0e21e
LW
1029
1030 $pwd = (getpwuid($<))[1];
a0d0e21e
LW
1031
1032 system "stty -echo";
1033 print "Password: ";
e71965be 1034 chomp($word = <STDIN>);
a0d0e21e
LW
1035 print "\n";
1036 system "stty echo";
1037
e71965be 1038 if (crypt($word, $pwd) ne $pwd) {
a0d0e21e
LW
1039 die "Sorry...\n";
1040 } else {
1041 print "ok\n";
54310121 1042 }
a0d0e21e 1043
9f8f0c9d 1044Of course, typing in your own password to whoever asks you
748a9306 1045for it is unwise.
a0d0e21e 1046
ef2e6798 1047The L<crypt|/crypt> function is unsuitable for hashing large quantities
19799a22 1048of data, not least of all because you can't get the information
ef2e6798 1049back. Look at the L<Digest> module for more robust algorithms.
19799a22 1050
f2791508
JH
1051If using crypt() on a Unicode string (which I<potentially> has
1052characters with codepoints above 255), Perl tries to make sense
1053of the situation by trying to downgrade (a copy of the string)
1054the string back to an eight-bit byte string before calling crypt()
1055(on that copy). If that works, good. If not, crypt() dies with
1056C<Wide character in crypt>.
85c16d83 1057
aa689395 1058=item dbmclose HASH
d74e8afc 1059X<dbmclose>
a0d0e21e 1060
19799a22 1061[This function has been largely superseded by the C<untie> function.]
a0d0e21e 1062
aa689395 1063Breaks the binding between a DBM file and a hash.
a0d0e21e 1064
19799a22 1065=item dbmopen HASH,DBNAME,MASK
d74e8afc 1066X<dbmopen> X<dbm> X<ndbm> X<sdbm> X<gdbm>
a0d0e21e 1067
19799a22 1068[This function has been largely superseded by the C<tie> function.]
a0d0e21e 1069
7b8d334a 1070This binds a dbm(3), ndbm(3), sdbm(3), gdbm(3), or Berkeley DB file to a
19799a22
GS
1071hash. HASH is the name of the hash. (Unlike normal C<open>, the first
1072argument is I<not> a filehandle, even though it looks like one). DBNAME
aa689395 1073is the name of the database (without the F<.dir> or F<.pag> extension if
1074any). If the database does not exist, it is created with protection
19799a22
GS
1075specified by MASK (as modified by the C<umask>). If your system supports
1076only the older DBM functions, you may perform only one C<dbmopen> in your
aa689395 1077program. In older versions of Perl, if your system had neither DBM nor
19799a22 1078ndbm, calling C<dbmopen> produced a fatal error; it now falls back to
aa689395 1079sdbm(3).
1080
1081If you don't have write access to the DBM file, you can only read hash
1082variables, not set them. If you want to test whether you can write,
19799a22 1083either use file tests or try setting a dummy hash entry inside an C<eval>,
aa689395 1084which will trap the error.
a0d0e21e 1085
19799a22
GS
1086Note that functions such as C<keys> and C<values> may return huge lists
1087when used on large DBM files. You may prefer to use the C<each>
a0d0e21e
LW
1088function to iterate over large DBM files. Example:
1089
1090 # print out history file offsets
1091 dbmopen(%HIST,'/usr/lib/news/history',0666);
1092 while (($key,$val) = each %HIST) {
1093 print $key, ' = ', unpack('L',$val), "\n";
1094 }
1095 dbmclose(%HIST);
1096
cb1a09d0 1097See also L<AnyDBM_File> for a more general description of the pros and
184e9718 1098cons of the various dbm approaches, as well as L<DB_File> for a particularly
cb1a09d0 1099rich implementation.
4633a7c4 1100
2b5ab1e7
TC
1101You can control which DBM library you use by loading that library
1102before you call dbmopen():
1103
1104 use DB_File;
1105 dbmopen(%NS_Hist, "$ENV{HOME}/.netscape/history.db")
1106 or die "Can't open netscape history file: $!";
1107
a0d0e21e 1108=item defined EXPR
d74e8afc 1109X<defined> X<undef> X<undefined>
a0d0e21e 1110
54310121 1111=item defined
bbce6d69 1112
2f9daede
TP
1113Returns a Boolean value telling whether EXPR has a value other than
1114the undefined value C<undef>. If EXPR is not present, C<$_> will be
1115checked.
1116
1117Many operations return C<undef> to indicate failure, end of file,
1118system error, uninitialized variable, and other exceptional
1119conditions. This function allows you to distinguish C<undef> from
1120other values. (A simple Boolean test will not distinguish among
7660c0ab 1121C<undef>, zero, the empty string, and C<"0">, which are all equally
2f9daede 1122false.) Note that since C<undef> is a valid scalar, its presence
19799a22 1123doesn't I<necessarily> indicate an exceptional condition: C<pop>
2f9daede
TP
1124returns C<undef> when its argument is an empty array, I<or> when the
1125element to return happens to be C<undef>.
1126
f10b0346
GS
1127You may also use C<defined(&func)> to check whether subroutine C<&func>
1128has ever been defined. The return value is unaffected by any forward
04891299 1129declarations of C<&func>. Note that a subroutine which is not defined
847c7ebe
DD
1130may still be callable: its package may have an C<AUTOLOAD> method that
1131makes it spring into existence the first time that it is called -- see
1132L<perlsub>.
f10b0346
GS
1133
1134Use of C<defined> on aggregates (hashes and arrays) is deprecated. It
1135used to report whether memory for that aggregate has ever been
1136allocated. This behavior may disappear in future versions of Perl.
1137You should instead use a simple test for size:
1138
1139 if (@an_array) { print "has array elements\n" }
1140 if (%a_hash) { print "has hash members\n" }
2f9daede
TP
1141
1142When used on a hash element, it tells you whether the value is defined,
dc848c6f 1143not whether the key exists in the hash. Use L</exists> for the latter
2f9daede 1144purpose.
a0d0e21e
LW
1145
1146Examples:
1147
1148 print if defined $switch{'D'};
1149 print "$val\n" while defined($val = pop(@ary));
1150 die "Can't readlink $sym: $!"
1151 unless defined($value = readlink $sym);
a0d0e21e 1152 sub foo { defined &$bar ? &$bar(@_) : die "No bar"; }
2f9daede 1153 $debugging = 0 unless defined $debugging;
a0d0e21e 1154
19799a22 1155Note: Many folks tend to overuse C<defined>, and then are surprised to
7660c0ab 1156discover that the number C<0> and C<""> (the zero-length string) are, in fact,
2f9daede 1157defined values. For example, if you say
a5f75d66
AD
1158
1159 "ab" =~ /a(.*)b/;
1160
7660c0ab 1161The pattern match succeeds, and C<$1> is defined, despite the fact that it
cf264981 1162matched "nothing". It didn't really fail to match anything. Rather, it
2b5ab1e7 1163matched something that happened to be zero characters long. This is all
a5f75d66 1164very above-board and honest. When a function returns an undefined value,
2f9daede 1165it's an admission that it couldn't give you an honest answer. So you
19799a22 1166should use C<defined> only when you're questioning the integrity of what
7660c0ab 1167you're trying to do. At other times, a simple comparison to C<0> or C<""> is
2f9daede
TP
1168what you want.
1169
dc848c6f 1170See also L</undef>, L</exists>, L</ref>.
2f9daede 1171
a0d0e21e 1172=item delete EXPR
d74e8afc 1173X<delete>
a0d0e21e 1174
01020589
GS
1175Given an expression that specifies a hash element, array element, hash slice,
1176or array slice, deletes the specified element(s) from the hash or array.
8216c1fd 1177In the case of an array, if the array elements happen to be at the end,
b76cc8ba 1178the size of the array will shrink to the highest element that tests
8216c1fd 1179true for exists() (or 0 if no such element exists).
a0d0e21e 1180
eba0920a
EM
1181Returns a list with the same number of elements as the number of elements
1182for which deletion was attempted. Each element of that list consists of
1183either the value of the element deleted, or the undefined value. In scalar
1184context, this means that you get the value of the last element deleted (or
1185the undefined value if that element did not exist).
1186
1187 %hash = (foo => 11, bar => 22, baz => 33);
1188 $scalar = delete $hash{foo}; # $scalar is 11
1189 $scalar = delete @hash{qw(foo bar)}; # $scalar is 22
1190 @array = delete @hash{qw(foo bar baz)}; # @array is (undef,undef,33)
1191
1192Deleting from C<%ENV> modifies the environment. Deleting from
01020589
GS
1193a hash tied to a DBM file deletes the entry from the DBM file. Deleting
1194from a C<tie>d hash or array may not necessarily return anything.
1195
8ea97a1e
GS
1196Deleting an array element effectively returns that position of the array
1197to its initial, uninitialized state. Subsequently testing for the same
cf264981
SP
1198element with exists() will return false. Also, deleting array elements
1199in the middle of an array will not shift the index of the elements
1200after them down. Use splice() for that. See L</exists>.
8ea97a1e 1201
01020589 1202The following (inefficiently) deletes all the values of %HASH and @ARRAY:
a0d0e21e 1203
5f05dabc 1204 foreach $key (keys %HASH) {
1205 delete $HASH{$key};
a0d0e21e
LW
1206 }
1207
01020589
GS
1208 foreach $index (0 .. $#ARRAY) {
1209 delete $ARRAY[$index];
1210 }
1211
1212And so do these:
5f05dabc 1213
01020589
GS
1214 delete @HASH{keys %HASH};
1215
9740c838 1216 delete @ARRAY[0 .. $#ARRAY];
5f05dabc 1217
2b5ab1e7 1218But both of these are slower than just assigning the empty list
01020589
GS
1219or undefining %HASH or @ARRAY:
1220
1221 %HASH = (); # completely empty %HASH
1222 undef %HASH; # forget %HASH ever existed
2b5ab1e7 1223
01020589
GS
1224 @ARRAY = (); # completely empty @ARRAY
1225 undef @ARRAY; # forget @ARRAY ever existed
2b5ab1e7
TC
1226
1227Note that the EXPR can be arbitrarily complicated as long as the final
01020589
GS
1228operation is a hash element, array element, hash slice, or array slice
1229lookup:
a0d0e21e
LW
1230
1231 delete $ref->[$x][$y]{$key};
5f05dabc 1232 delete @{$ref->[$x][$y]}{$key1, $key2, @morekeys};
a0d0e21e 1233
01020589
GS
1234 delete $ref->[$x][$y][$index];
1235 delete @{$ref->[$x][$y]}[$index1, $index2, @moreindices];
1236
a0d0e21e 1237=item die LIST
d74e8afc 1238X<die> X<throw> X<exception> X<raise> X<$@> X<abort>
a0d0e21e 1239
19799a22
GS
1240Outside an C<eval>, prints the value of LIST to C<STDERR> and
1241exits with the current value of C<$!> (errno). If C<$!> is C<0>,
61eff3bc
JH
1242exits with the value of C<<< ($? >> 8) >>> (backtick `command`
1243status). If C<<< ($? >> 8) >>> is C<0>, exits with C<255>. Inside
19799a22
GS
1244an C<eval(),> the error message is stuffed into C<$@> and the
1245C<eval> is terminated with the undefined value. This makes
1246C<die> the way to raise an exception.
a0d0e21e
LW
1247
1248Equivalent examples:
1249
1250 die "Can't cd to spool: $!\n" unless chdir '/usr/spool/news';
54310121 1251 chdir '/usr/spool/news' or die "Can't cd to spool: $!\n"
a0d0e21e 1252
ccac6780 1253If the last element of LIST does not end in a newline, the current
df37ec69
WW
1254script line number and input line number (if any) are also printed,
1255and a newline is supplied. Note that the "input line number" (also
1256known as "chunk") is subject to whatever notion of "line" happens to
1257be currently in effect, and is also available as the special variable
1258C<$.>. See L<perlvar/"$/"> and L<perlvar/"$.">.
1259
1260Hint: sometimes appending C<", stopped"> to your message will cause it
1261to make better sense when the string C<"at foo line 123"> is appended.
1262Suppose you are running script "canasta".
a0d0e21e
LW
1263
1264 die "/etc/games is no good";
1265 die "/etc/games is no good, stopped";
1266
1267produce, respectively
1268
1269 /etc/games is no good at canasta line 123.
1270 /etc/games is no good, stopped at canasta line 123.
1271
2b5ab1e7 1272See also exit(), warn(), and the Carp module.
a0d0e21e 1273
7660c0ab
A
1274If LIST is empty and C<$@> already contains a value (typically from a
1275previous eval) that value is reused after appending C<"\t...propagated">.
fb73857a 1276This is useful for propagating exceptions:
1277
1278 eval { ... };
1279 die unless $@ =~ /Expected exception/;
1280
ad216e65
JH
1281If LIST is empty and C<$@> contains an object reference that has a
1282C<PROPAGATE> method, that method will be called with additional file
1283and line number parameters. The return value replaces the value in
28a5cf3b 1284C<$@>. i.e. as if C<< $@ = eval { $@->PROPAGATE(__FILE__, __LINE__) }; >>
ad216e65
JH
1285were called.
1286
7660c0ab 1287If C<$@> is empty then the string C<"Died"> is used.
fb73857a 1288
52531d10
GS
1289die() can also be called with a reference argument. If this happens to be
1290trapped within an eval(), $@ contains the reference. This behavior permits
1291a more elaborate exception handling implementation using objects that
4375e838 1292maintain arbitrary state about the nature of the exception. Such a scheme
52531d10 1293is sometimes preferable to matching particular string values of $@ using
746d7dd7
GL
1294regular expressions. Because $@ is a global variable, and eval() may be
1295used within object implementations, care must be taken that analyzing the
1296error object doesn't replace the reference in the global variable. The
1297easiest solution is to make a local copy of the reference before doing
1298other manipulations. Here's an example:
52531d10 1299
da279afe 1300 use Scalar::Util 'blessed';
1301
52531d10 1302 eval { ... ; die Some::Module::Exception->new( FOO => "bar" ) };
746d7dd7
GL
1303 if (my $ev_err = $@) {
1304 if (blessed($ev_err) && $ev_err->isa("Some::Module::Exception")) {
52531d10
GS
1305 # handle Some::Module::Exception
1306 }
1307 else {
1308 # handle all other possible exceptions
1309 }
1310 }
1311
19799a22 1312Because perl will stringify uncaught exception messages before displaying
52531d10
GS
1313them, you may want to overload stringification operations on such custom
1314exception objects. See L<overload> for details about that.
1315
19799a22
GS
1316You can arrange for a callback to be run just before the C<die>
1317does its deed, by setting the C<$SIG{__DIE__}> hook. The associated
1318handler will be called with the error text and can change the error
1319message, if it sees fit, by calling C<die> again. See
1320L<perlvar/$SIG{expr}> for details on setting C<%SIG> entries, and
cf264981 1321L<"eval BLOCK"> for some examples. Although this feature was
19799a22
GS
1322to be run only right before your program was to exit, this is not
1323currently the case--the C<$SIG{__DIE__}> hook is currently called
1324even inside eval()ed blocks/strings! If one wants the hook to do
1325nothing in such situations, put
fb73857a 1326
1327 die @_ if $^S;
1328
19799a22
GS
1329as the first line of the handler (see L<perlvar/$^S>). Because
1330this promotes strange action at a distance, this counterintuitive
b76cc8ba 1331behavior may be fixed in a future release.
774d564b 1332
a0d0e21e 1333=item do BLOCK
d74e8afc 1334X<do> X<block>
a0d0e21e
LW
1335
1336Not really a function. Returns the value of the last command in the
6b275a1f
RGS
1337sequence of commands indicated by BLOCK. When modified by the C<while> or
1338C<until> loop modifier, executes the BLOCK once before testing the loop
1339condition. (On other statements the loop modifiers test the conditional
1340first.)
a0d0e21e 1341
4968c1e4 1342C<do BLOCK> does I<not> count as a loop, so the loop control statements
2b5ab1e7
TC
1343C<next>, C<last>, or C<redo> cannot be used to leave or restart the block.
1344See L<perlsyn> for alternative strategies.
4968c1e4 1345
a0d0e21e 1346=item do SUBROUTINE(LIST)
d74e8afc 1347X<do>
a0d0e21e 1348
cf264981 1349This form of subroutine call is deprecated. See L<perlsub>.
a0d0e21e
LW
1350
1351=item do EXPR
d74e8afc 1352X<do>
a0d0e21e
LW
1353
1354Uses the value of EXPR as a filename and executes the contents of the
ea63ef19 1355file as a Perl script.
a0d0e21e
LW
1356
1357 do 'stat.pl';
1358
1359is just like
1360
986b19de 1361 eval `cat stat.pl`;
a0d0e21e 1362
2b5ab1e7 1363except that it's more efficient and concise, keeps track of the current
ea63ef19 1364filename for error messages, searches the @INC directories, and updates
2b5ab1e7
TC
1365C<%INC> if the file is found. See L<perlvar/Predefined Names> for these
1366variables. It also differs in that code evaluated with C<do FILENAME>
1367cannot see lexicals in the enclosing scope; C<eval STRING> does. It's the
1368same, however, in that it does reparse the file every time you call it,
1369so you probably don't want to do this inside a loop.
a0d0e21e 1370
8e30cc93 1371If C<do> cannot read the file, it returns undef and sets C<$!> to the
2b5ab1e7 1372error. If C<do> can read the file but cannot compile it, it
8e30cc93
MG
1373returns undef and sets an error message in C<$@>. If the file is
1374successfully compiled, C<do> returns the value of the last expression
1375evaluated.
1376
a0d0e21e 1377Note that inclusion of library modules is better done with the
19799a22 1378C<use> and C<require> operators, which also do automatic error checking
4633a7c4 1379and raise an exception if there's a problem.
a0d0e21e 1380
5a964f20
TC
1381You might like to use C<do> to read in a program configuration
1382file. Manual error checking can be done this way:
1383
b76cc8ba 1384 # read in config files: system first, then user
f86cebdf 1385 for $file ("/share/prog/defaults.rc",
b76cc8ba 1386 "$ENV{HOME}/.someprogrc")
2b5ab1e7 1387 {
5a964f20 1388 unless ($return = do $file) {
f86cebdf
GS
1389 warn "couldn't parse $file: $@" if $@;
1390 warn "couldn't do $file: $!" unless defined $return;
1391 warn "couldn't run $file" unless $return;
5a964f20
TC
1392 }
1393 }
1394
a0d0e21e 1395=item dump LABEL
d74e8afc 1396X<dump> X<core> X<undump>
a0d0e21e 1397
1614b0e3
JD
1398=item dump
1399
19799a22
GS
1400This function causes an immediate core dump. See also the B<-u>
1401command-line switch in L<perlrun>, which does the same thing.
1402Primarily this is so that you can use the B<undump> program (not
1403supplied) to turn your core dump into an executable binary after
1404having initialized all your variables at the beginning of the
1405program. When the new binary is executed it will begin by executing
1406a C<goto LABEL> (with all the restrictions that C<goto> suffers).
1407Think of it as a goto with an intervening core dump and reincarnation.
1408If C<LABEL> is omitted, restarts the program from the top.
1409
1410B<WARNING>: Any files opened at the time of the dump will I<not>
1411be open any more when the program is reincarnated, with possible
b76cc8ba 1412resulting confusion on the part of Perl.
19799a22 1413
59f521f4
RGS
1414This function is now largely obsolete, mostly because it's very hard to
1415convert a core file into an executable. That's why you should now invoke
1416it as C<CORE::dump()>, if you don't want to be warned against a possible
ac206dc8 1417typo.
19799a22 1418
aa689395 1419=item each HASH
d74e8afc 1420X<each> X<hash, iterator>
aa689395 1421
aeedbbed
NC
1422=item each ARRAY
1423X<array, iterator>
1424
5a964f20 1425When called in list context, returns a 2-element list consisting of the
aeedbbed
NC
1426key and value for the next element of a hash, or the index and value for
1427the next element of an array, so that you can iterate over it. When called
1428in scalar context, returns only the key for the next element in the hash
1429(or the index for an array).
2f9daede 1430
aeedbbed 1431Hash entries are returned in an apparently random order. The actual random
504f80c1
JH
1432order is subject to change in future versions of perl, but it is
1433guaranteed to be in the same order as either the C<keys> or C<values>
4546b9e6 1434function would produce on the same (unmodified) hash. Since Perl
22883ac5 14355.8.2 the ordering can be different even between different runs of Perl
4546b9e6 1436for security reasons (see L<perlsec/"Algorithmic Complexity Attacks">).
ab192400 1437
aeedbbed
NC
1438When the hash or array is entirely read, a null array is returned in list
1439context (which when assigned produces a false (C<0>) value), and C<undef> in
19799a22 1440scalar context. The next call to C<each> after that will start iterating
aeedbbed
NC
1441again. There is a single iterator for each hash or array, shared by all
1442C<each>, C<keys>, and C<values> function calls in the program; it can be
1443reset by reading all the elements from the hash or array, or by evaluating
1444C<keys HASH>, C<values HASH>, C<keys ARRAY>, or C<values ARRAY>. If you add
1445or delete elements of a hash while you're
74fc8b5f
MJD
1446iterating over it, you may get entries skipped or duplicated, so
1447don't. Exception: It is always safe to delete the item most recently
1448returned by C<each()>, which means that the following code will work:
1449
1450 while (($key, $value) = each %hash) {
1451 print $key, "\n";
1452 delete $hash{$key}; # This is safe
1453 }
aa689395 1454
f86cebdf 1455The following prints out your environment like the printenv(1) program,
aa689395 1456only in a different order:
a0d0e21e
LW
1457
1458 while (($key,$value) = each %ENV) {
1459 print "$key=$value\n";
1460 }
1461
19799a22 1462See also C<keys>, C<values> and C<sort>.
a0d0e21e
LW
1463
1464=item eof FILEHANDLE
d74e8afc
ITB
1465X<eof>
1466X<end of file>
1467X<end-of-file>
a0d0e21e 1468
4633a7c4
LW
1469=item eof ()
1470
a0d0e21e
LW
1471=item eof
1472
1473Returns 1 if the next read on FILEHANDLE will return end of file, or if
1474FILEHANDLE is not open. FILEHANDLE may be an expression whose value
5a964f20 1475gives the real filehandle. (Note that this function actually
19799a22 1476reads a character and then C<ungetc>s it, so isn't very useful in an
748a9306 1477interactive context.) Do not read from a terminal file (or call
19799a22 1478C<eof(FILEHANDLE)> on it) after end-of-file is reached. File types such
748a9306
LW
1479as terminals may lose the end-of-file condition if you do.
1480
820475bd
GS
1481An C<eof> without an argument uses the last file read. Using C<eof()>
1482with empty parentheses is very different. It refers to the pseudo file
1483formed from the files listed on the command line and accessed via the
61eff3bc
JH
1484C<< <> >> operator. Since C<< <> >> isn't explicitly opened,
1485as a normal filehandle is, an C<eof()> before C<< <> >> has been
820475bd 1486used will cause C<@ARGV> to be examined to determine if input is
67408cae 1487available. Similarly, an C<eof()> after C<< <> >> has returned
efdd0218
RB
1488end-of-file will assume you are processing another C<@ARGV> list,
1489and if you haven't set C<@ARGV>, will read input from C<STDIN>;
1490see L<perlop/"I/O Operators">.
820475bd 1491
61eff3bc 1492In a C<< while (<>) >> loop, C<eof> or C<eof(ARGV)> can be used to
820475bd
GS
1493detect the end of each file, C<eof()> will only detect the end of the
1494last file. Examples:
a0d0e21e 1495
748a9306
LW
1496 # reset line numbering on each input file
1497 while (<>) {
b76cc8ba 1498 next if /^\s*#/; # skip comments
748a9306 1499 print "$.\t$_";
5a964f20
TC
1500 } continue {
1501 close ARGV if eof; # Not eof()!
748a9306
LW
1502 }
1503
a0d0e21e
LW
1504 # insert dashes just before last line of last file
1505 while (<>) {
6ac88b13 1506 if (eof()) { # check for end of last file
a0d0e21e
LW
1507 print "--------------\n";
1508 }
1509 print;
6ac88b13 1510 last if eof(); # needed if we're reading from a terminal
a0d0e21e
LW
1511 }
1512
a0d0e21e 1513Practical hint: you almost never need to use C<eof> in Perl, because the
3ce0d271
GS
1514input operators typically return C<undef> when they run out of data, or if
1515there was an error.
a0d0e21e
LW
1516
1517=item eval EXPR
d74e8afc 1518X<eval> X<try> X<catch> X<evaluate> X<parse> X<execute>
f723aae1 1519X<error, handling> X<exception, handling>
a0d0e21e
LW
1520
1521=item eval BLOCK
1522
ce2984c3
PF
1523=item eval
1524
c7cc6f1c
GS
1525In the first form, the return value of EXPR is parsed and executed as if it
1526were a little Perl program. The value of the expression (which is itself
5a964f20 1527determined within scalar context) is first parsed, and if there weren't any
be3174d2
GS
1528errors, executed in the lexical context of the current Perl program, so
1529that any variable settings or subroutine and format definitions remain
cf264981 1530afterwards. Note that the value is parsed every time the C<eval> executes.
be3174d2
GS
1531If EXPR is omitted, evaluates C<$_>. This form is typically used to
1532delay parsing and subsequent execution of the text of EXPR until run time.
c7cc6f1c
GS
1533
1534In the second form, the code within the BLOCK is parsed only once--at the
cf264981 1535same time the code surrounding the C<eval> itself was parsed--and executed
c7cc6f1c
GS
1536within the context of the current Perl program. This form is typically
1537used to trap exceptions more efficiently than the first (see below), while
1538also providing the benefit of checking the code within BLOCK at compile
1539time.
1540
1541The final semicolon, if any, may be omitted from the value of EXPR or within
1542the BLOCK.
1543
1544In both forms, the value returned is the value of the last expression
5a964f20 1545evaluated inside the mini-program; a return statement may be also used, just
c7cc6f1c 1546as with subroutines. The expression providing the return value is evaluated
cf264981
SP
1547in void, scalar, or list context, depending on the context of the C<eval>
1548itself. See L</wantarray> for more on how the evaluation context can be
1549determined.
a0d0e21e 1550
19799a22
GS
1551If there is a syntax error or runtime error, or a C<die> statement is
1552executed, an undefined value is returned by C<eval>, and C<$@> is set to the
a0d0e21e 1553error message. If there was no error, C<$@> is guaranteed to be a null
19799a22 1554string. Beware that using C<eval> neither silences perl from printing
c7cc6f1c 1555warnings to STDERR, nor does it stuff the text of warning messages into C<$@>.
d9984052
A
1556To do either of those, you have to use the C<$SIG{__WARN__}> facility, or
1557turn off warnings inside the BLOCK or EXPR using S<C<no warnings 'all'>>.
1558See L</warn>, L<perlvar>, L<warnings> and L<perllexwarn>.
a0d0e21e 1559
19799a22
GS
1560Note that, because C<eval> traps otherwise-fatal errors, it is useful for
1561determining whether a particular feature (such as C<socket> or C<symlink>)
a0d0e21e
LW
1562is implemented. It is also Perl's exception trapping mechanism, where
1563the die operator is used to raise exceptions.
1564
1565If the code to be executed doesn't vary, you may use the eval-BLOCK
1566form to trap run-time errors without incurring the penalty of
1567recompiling each time. The error, if any, is still returned in C<$@>.
1568Examples:
1569
54310121 1570 # make divide-by-zero nonfatal
a0d0e21e
LW
1571 eval { $answer = $a / $b; }; warn $@ if $@;
1572
1573 # same thing, but less efficient
1574 eval '$answer = $a / $b'; warn $@ if $@;
1575
1576 # a compile-time error
5a964f20 1577 eval { $answer = }; # WRONG
a0d0e21e
LW
1578
1579 # a run-time error
1580 eval '$answer ='; # sets $@
1581
cf264981
SP
1582Using the C<eval{}> form as an exception trap in libraries does have some
1583issues. Due to the current arguably broken state of C<__DIE__> hooks, you
1584may wish not to trigger any C<__DIE__> hooks that user code may have installed.
2b5ab1e7
TC
1585You can use the C<local $SIG{__DIE__}> construct for this purpose,
1586as shown in this example:
774d564b 1587
1588 # a very private exception trap for divide-by-zero
f86cebdf
GS
1589 eval { local $SIG{'__DIE__'}; $answer = $a / $b; };
1590 warn $@ if $@;
774d564b 1591
1592This is especially significant, given that C<__DIE__> hooks can call
19799a22 1593C<die> again, which has the effect of changing their error messages:
774d564b 1594
1595 # __DIE__ hooks may modify error messages
1596 {
f86cebdf
GS
1597 local $SIG{'__DIE__'} =
1598 sub { (my $x = $_[0]) =~ s/foo/bar/g; die $x };
c7cc6f1c
GS
1599 eval { die "foo lives here" };
1600 print $@ if $@; # prints "bar lives here"
774d564b 1601 }
1602
19799a22 1603Because this promotes action at a distance, this counterintuitive behavior
2b5ab1e7
TC
1604may be fixed in a future release.
1605
19799a22 1606With an C<eval>, you should be especially careful to remember what's
a0d0e21e
LW
1607being looked at when:
1608
1609 eval $x; # CASE 1
1610 eval "$x"; # CASE 2
1611
1612 eval '$x'; # CASE 3
1613 eval { $x }; # CASE 4
1614
5a964f20 1615 eval "\$$x++"; # CASE 5
a0d0e21e
LW
1616 $$x++; # CASE 6
1617
2f9daede 1618Cases 1 and 2 above behave identically: they run the code contained in
19799a22 1619the variable $x. (Although case 2 has misleading double quotes making
2f9daede 1620the reader wonder what else might be happening (nothing is).) Cases 3
7660c0ab 1621and 4 likewise behave in the same way: they run the code C<'$x'>, which
19799a22 1622does nothing but return the value of $x. (Case 4 is preferred for
2f9daede
TP
1623purely visual reasons, but it also has the advantage of compiling at
1624compile-time instead of at run-time.) Case 5 is a place where
19799a22 1625normally you I<would> like to use double quotes, except that in this
2f9daede
TP
1626particular situation, you can just use symbolic references instead, as
1627in case 6.
a0d0e21e 1628
8a5a710d
DN
1629The assignment to C<$@> occurs before restoration of localised variables,
1630which means a temporary is required if you want to mask some but not all
1631errors:
1632
1633 # alter $@ on nefarious repugnancy only
1634 {
1635 my $e;
1636 {
1637 local $@; # protect existing $@
1638 eval { test_repugnancy() };
1639 # $@ =~ /nefarious/ and die $@; # DOES NOT WORK
1640 $@ =~ /nefarious/ and $e = $@;
1641 }
1642 die $e if defined $e
1643 }
1644
4968c1e4 1645C<eval BLOCK> does I<not> count as a loop, so the loop control statements
2b5ab1e7 1646C<next>, C<last>, or C<redo> cannot be used to leave or restart the block.
4968c1e4 1647
d819b83a
DM
1648Note that as a very special case, an C<eval ''> executed within the C<DB>
1649package doesn't see the usual surrounding lexical scope, but rather the
1650scope of the first non-DB piece of code that called it. You don't normally
1651need to worry about this unless you are writing a Perl debugger.
1652
a0d0e21e 1653=item exec LIST
d74e8afc 1654X<exec> X<execute>
a0d0e21e 1655
8bf3b016
GS
1656=item exec PROGRAM LIST
1657
19799a22
GS
1658The C<exec> function executes a system command I<and never returns>--
1659use C<system> instead of C<exec> if you want it to return. It fails and
1660returns false only if the command does not exist I<and> it is executed
fb73857a 1661directly instead of via your system's command shell (see below).
a0d0e21e 1662
19799a22
GS
1663Since it's a common mistake to use C<exec> instead of C<system>, Perl
1664warns you if there is a following statement which isn't C<die>, C<warn>,
1665or C<exit> (if C<-w> is set - but you always do that). If you
1666I<really> want to follow an C<exec> with some other statement, you
55d729e4
GS
1667can use one of these styles to avoid the warning:
1668
5a964f20
TC
1669 exec ('foo') or print STDERR "couldn't exec foo: $!";
1670 { exec ('foo') }; print STDERR "couldn't exec foo: $!";
55d729e4 1671
5a964f20 1672If there is more than one argument in LIST, or if LIST is an array
f86cebdf 1673with more than one value, calls execvp(3) with the arguments in LIST.
5a964f20
TC
1674If there is only one scalar argument or an array with one element in it,
1675the argument is checked for shell metacharacters, and if there are any,
1676the entire argument is passed to the system's command shell for parsing
1677(this is C</bin/sh -c> on Unix platforms, but varies on other platforms).
1678If there are no shell metacharacters in the argument, it is split into
b76cc8ba 1679words and passed directly to C<execvp>, which is more efficient.
19799a22 1680Examples:
a0d0e21e 1681
19799a22
GS
1682 exec '/bin/echo', 'Your arguments are: ', @ARGV;
1683 exec "sort $outfile | uniq";
a0d0e21e
LW
1684
1685If you don't really want to execute the first argument, but want to lie
1686to the program you are executing about its own name, you can specify
1687the program you actually want to run as an "indirect object" (without a
1688comma) in front of the LIST. (This always forces interpretation of the
54310121 1689LIST as a multivalued list, even if there is only a single scalar in
a0d0e21e
LW
1690the list.) Example:
1691
1692 $shell = '/bin/csh';
1693 exec $shell '-sh'; # pretend it's a login shell
1694
1695or, more directly,
1696
1697 exec {'/bin/csh'} '-sh'; # pretend it's a login shell
1698
bb32b41a
GS
1699When the arguments get executed via the system shell, results will
1700be subject to its quirks and capabilities. See L<perlop/"`STRING`">
1701for details.
1702
19799a22
GS
1703Using an indirect object with C<exec> or C<system> is also more
1704secure. This usage (which also works fine with system()) forces
1705interpretation of the arguments as a multivalued list, even if the
1706list had just one argument. That way you're safe from the shell
1707expanding wildcards or splitting up words with whitespace in them.
5a964f20
TC
1708
1709 @args = ( "echo surprise" );
1710
2b5ab1e7 1711 exec @args; # subject to shell escapes
f86cebdf 1712 # if @args == 1
2b5ab1e7 1713 exec { $args[0] } @args; # safe even with one-arg list
5a964f20
TC
1714
1715The first version, the one without the indirect object, ran the I<echo>
1716program, passing it C<"surprise"> an argument. The second version
1717didn't--it tried to run a program literally called I<"echo surprise">,
1718didn't find it, and set C<$?> to a non-zero value indicating failure.
1719
0f897271
GS
1720Beginning with v5.6.0, Perl will attempt to flush all files opened for
1721output before the exec, but this may not be supported on some platforms
1722(see L<perlport>). To be safe, you may need to set C<$|> ($AUTOFLUSH
1723in English) or call the C<autoflush()> method of C<IO::Handle> on any
1724open handles in order to avoid lost output.
1725
19799a22 1726Note that C<exec> will not call your C<END> blocks, nor will it call
7660c0ab
A
1727any C<DESTROY> methods in your objects.
1728
a0d0e21e 1729=item exists EXPR
d74e8afc 1730X<exists> X<autovivification>
a0d0e21e 1731
01020589 1732Given an expression that specifies a hash element or array element,
8ea97a1e
GS
1733returns true if the specified element in the hash or array has ever
1734been initialized, even if the corresponding value is undefined. The
1735element is not autovivified if it doesn't exist.
a0d0e21e 1736
01020589
GS
1737 print "Exists\n" if exists $hash{$key};
1738 print "Defined\n" if defined $hash{$key};
1739 print "True\n" if $hash{$key};
1740
1741 print "Exists\n" if exists $array[$index];
1742 print "Defined\n" if defined $array[$index];
1743 print "True\n" if $array[$index];
a0d0e21e 1744
8ea97a1e 1745A hash or array element can be true only if it's defined, and defined if
a0d0e21e
LW
1746it exists, but the reverse doesn't necessarily hold true.
1747
afebc493
GS
1748Given an expression that specifies the name of a subroutine,
1749returns true if the specified subroutine has ever been declared, even
1750if it is undefined. Mentioning a subroutine name for exists or defined
847c7ebe
DD
1751does not count as declaring it. Note that a subroutine which does not
1752exist may still be callable: its package may have an C<AUTOLOAD>
1753method that makes it spring into existence the first time that it is
1754called -- see L<perlsub>.
afebc493
GS
1755
1756 print "Exists\n" if exists &subroutine;
1757 print "Defined\n" if defined &subroutine;
1758
a0d0e21e 1759Note that the EXPR can be arbitrarily complicated as long as the final
afebc493 1760operation is a hash or array key lookup or subroutine name:
a0d0e21e 1761
2b5ab1e7
TC
1762 if (exists $ref->{A}->{B}->{$key}) { }
1763 if (exists $hash{A}{B}{$key}) { }
1764
01020589
GS
1765 if (exists $ref->{A}->{B}->[$ix]) { }
1766 if (exists $hash{A}{B}[$ix]) { }
1767
afebc493
GS
1768 if (exists &{$ref->{A}{B}{$key}}) { }
1769
01020589
GS
1770Although the deepest nested array or hash will not spring into existence
1771just because its existence was tested, any intervening ones will.
61eff3bc 1772Thus C<< $ref->{"A"} >> and C<< $ref->{"A"}->{"B"} >> will spring
01020589
GS
1773into existence due to the existence test for the $key element above.
1774This happens anywhere the arrow operator is used, including even:
5a964f20 1775
2b5ab1e7
TC
1776 undef $ref;
1777 if (exists $ref->{"Some key"}) { }
1778 print $ref; # prints HASH(0x80d3d5c)
1779
1780This surprising autovivification in what does not at first--or even
1781second--glance appear to be an lvalue context may be fixed in a future
5a964f20 1782release.
a0d0e21e 1783
afebc493
GS
1784Use of a subroutine call, rather than a subroutine name, as an argument
1785to exists() is an error.
1786
1787 exists &sub; # OK
1788 exists &sub(); # Error
1789
a0d0e21e 1790=item exit EXPR
d74e8afc 1791X<exit> X<terminate> X<abort>
a0d0e21e 1792
ce2984c3
PF
1793=item exit
1794
2b5ab1e7 1795Evaluates EXPR and exits immediately with that value. Example:
a0d0e21e
LW
1796
1797 $ans = <STDIN>;
1798 exit 0 if $ans =~ /^[Xx]/;
1799
19799a22 1800See also C<die>. If EXPR is omitted, exits with C<0> status. The only
2b5ab1e7
TC
1801universally recognized values for EXPR are C<0> for success and C<1>
1802for error; other values are subject to interpretation depending on the
1803environment in which the Perl program is running. For example, exiting
180469 (EX_UNAVAILABLE) from a I<sendmail> incoming-mail filter will cause
1805the mailer to return the item undelivered, but that's not true everywhere.
a0d0e21e 1806
19799a22
GS
1807Don't use C<exit> to abort a subroutine if there's any chance that
1808someone might want to trap whatever error happened. Use C<die> instead,
1809which can be trapped by an C<eval>.
28757baa 1810
19799a22 1811The exit() function does not always exit immediately. It calls any
2b5ab1e7 1812defined C<END> routines first, but these C<END> routines may not
19799a22 1813themselves abort the exit. Likewise any object destructors that need to
2b5ab1e7
TC
1814be called are called before the real exit. If this is a problem, you
1815can call C<POSIX:_exit($status)> to avoid END and destructor processing.
87275199 1816See L<perlmod> for details.
5a964f20 1817
a0d0e21e 1818=item exp EXPR
d74e8afc 1819X<exp> X<exponential> X<antilog> X<antilogarithm> X<e>
a0d0e21e 1820
54310121 1821=item exp
bbce6d69 1822
b76cc8ba 1823Returns I<e> (the natural logarithm base) to the power of EXPR.
a0d0e21e
LW
1824If EXPR is omitted, gives C<exp($_)>.
1825
1826=item fcntl FILEHANDLE,FUNCTION,SCALAR
d74e8afc 1827X<fcntl>
a0d0e21e 1828
f86cebdf 1829Implements the fcntl(2) function. You'll probably have to say
a0d0e21e
LW
1830
1831 use Fcntl;
1832
0ade1984 1833first to get the correct constant definitions. Argument processing and
b76cc8ba 1834value return works just like C<ioctl> below.
a0d0e21e
LW
1835For example:
1836
1837 use Fcntl;
5a964f20
TC
1838 fcntl($filehandle, F_GETFL, $packed_return_buffer)
1839 or die "can't fcntl F_GETFL: $!";
1840
554ad1fc 1841You don't have to check for C<defined> on the return from C<fcntl>.
951ba7fe
GS
1842Like C<ioctl>, it maps a C<0> return from the system call into
1843C<"0 but true"> in Perl. This string is true in boolean context and C<0>
2b5ab1e7
TC
1844in numeric context. It is also exempt from the normal B<-w> warnings
1845on improper numeric conversions.
5a964f20 1846
19799a22 1847Note that C<fcntl> will produce a fatal error if used on a machine that
2b5ab1e7
TC
1848doesn't implement fcntl(2). See the Fcntl module or your fcntl(2)
1849manpage to learn what functions are available on your system.
a0d0e21e 1850
be2f7487
TH
1851Here's an example of setting a filehandle named C<REMOTE> to be
1852non-blocking at the system level. You'll have to negotiate C<$|>
1853on your own, though.
1854
1855 use Fcntl qw(F_GETFL F_SETFL O_NONBLOCK);
1856
1857 $flags = fcntl(REMOTE, F_GETFL, 0)
1858 or die "Can't get flags for the socket: $!\n";
1859
1860 $flags = fcntl(REMOTE, F_SETFL, $flags | O_NONBLOCK)
1861 or die "Can't set flags for the socket: $!\n";
1862
a0d0e21e 1863=item fileno FILEHANDLE
d74e8afc 1864X<fileno>
a0d0e21e 1865
2b5ab1e7
TC
1866Returns the file descriptor for a filehandle, or undefined if the
1867filehandle is not open. This is mainly useful for constructing
19799a22 1868bitmaps for C<select> and low-level POSIX tty-handling operations.
2b5ab1e7
TC
1869If FILEHANDLE is an expression, the value is taken as an indirect
1870filehandle, generally its name.
5a964f20 1871
b76cc8ba 1872You can use this to find out whether two handles refer to the
5a964f20
TC
1873same underlying descriptor:
1874
1875 if (fileno(THIS) == fileno(THAT)) {
1876 print "THIS and THAT are dups\n";
b76cc8ba
NIS
1877 }
1878
1879(Filehandles connected to memory objects via new features of C<open> may
1880return undefined even though they are open.)
1881
a0d0e21e
LW
1882
1883=item flock FILEHANDLE,OPERATION
d74e8afc 1884X<flock> X<lock> X<locking>
a0d0e21e 1885
19799a22
GS
1886Calls flock(2), or an emulation of it, on FILEHANDLE. Returns true
1887for success, false on failure. Produces a fatal error if used on a
2b5ab1e7 1888machine that doesn't implement flock(2), fcntl(2) locking, or lockf(3).
19799a22 1889C<flock> is Perl's portable file locking interface, although it locks
2b5ab1e7
TC
1890only entire files, not records.
1891
1892Two potentially non-obvious but traditional C<flock> semantics are
1893that it waits indefinitely until the lock is granted, and that its locks
1894B<merely advisory>. Such discretionary locks are more flexible, but offer
cf264981
SP
1895fewer guarantees. This means that programs that do not also use C<flock>
1896may modify files locked with C<flock>. See L<perlport>,
2b5ab1e7
TC
1897your port's specific documentation, or your system-specific local manpages
1898for details. It's best to assume traditional behavior if you're writing
1899portable programs. (But if you're not, you should as always feel perfectly
1900free to write for your own system's idiosyncrasies (sometimes called
1901"features"). Slavish adherence to portability concerns shouldn't get
1902in the way of your getting your job done.)
a3cb178b 1903
8ebc5c01 1904OPERATION is one of LOCK_SH, LOCK_EX, or LOCK_UN, possibly combined with
1905LOCK_NB. These constants are traditionally valued 1, 2, 8 and 4, but
ea3105be 1906you can use the symbolic names if you import them from the Fcntl module,
68dc0745 1907either individually, or as a group using the ':flock' tag. LOCK_SH
1908requests a shared lock, LOCK_EX requests an exclusive lock, and LOCK_UN
ea3105be
GS
1909releases a previously requested lock. If LOCK_NB is bitwise-or'ed with
1910LOCK_SH or LOCK_EX then C<flock> will return immediately rather than blocking
68dc0745 1911waiting for the lock (check the return status to see if you got it).
1912
2b5ab1e7
TC
1913To avoid the possibility of miscoordination, Perl now flushes FILEHANDLE
1914before locking or unlocking it.
8ebc5c01 1915
f86cebdf 1916Note that the emulation built with lockf(3) doesn't provide shared
8ebc5c01 1917locks, and it requires that FILEHANDLE be open with write intent. These
2b5ab1e7 1918are the semantics that lockf(3) implements. Most if not all systems
f86cebdf 1919implement lockf(3) in terms of fcntl(2) locking, though, so the
8ebc5c01 1920differing semantics shouldn't bite too many people.
1921
becacb53
TM
1922Note that the fcntl(2) emulation of flock(3) requires that FILEHANDLE
1923be open with read intent to use LOCK_SH and requires that it be open
1924with write intent to use LOCK_EX.
1925
19799a22
GS
1926Note also that some versions of C<flock> cannot lock things over the
1927network; you would need to use the more system-specific C<fcntl> for
f86cebdf
GS
1928that. If you like you can force Perl to ignore your system's flock(2)
1929function, and so provide its own fcntl(2)-based emulation, by passing
8ebc5c01 1930the switch C<-Ud_flock> to the F<Configure> program when you configure
1931perl.
4633a7c4
LW
1932
1933Here's a mailbox appender for BSD systems.
a0d0e21e 1934
7e1af8bc 1935 use Fcntl ':flock'; # import LOCK_* constants
a0d0e21e
LW
1936
1937 sub lock {
7e1af8bc 1938 flock(MBOX,LOCK_EX);
a0d0e21e
LW
1939 # and, in case someone appended
1940 # while we were waiting...
1941 seek(MBOX, 0, 2);
1942 }
1943
1944 sub unlock {
7e1af8bc 1945 flock(MBOX,LOCK_UN);
a0d0e21e
LW
1946 }
1947
b0169937 1948 open(my $mbox, ">>", "/usr/spool/mail/$ENV{'USER'}")
a0d0e21e
LW
1949 or die "Can't open mailbox: $!";
1950
1951 lock();
b0169937 1952 print $mbox $msg,"\n\n";
a0d0e21e
LW
1953 unlock();
1954
2b5ab1e7
TC
1955On systems that support a real flock(), locks are inherited across fork()
1956calls, whereas those that must resort to the more capricious fcntl()
1957function lose the locks, making it harder to write servers.
1958
cb1a09d0 1959See also L<DB_File> for other flock() examples.
a0d0e21e
LW
1960
1961=item fork
d74e8afc 1962X<fork> X<child> X<parent>
a0d0e21e 1963
2b5ab1e7
TC
1964Does a fork(2) system call to create a new process running the
1965same program at the same point. It returns the child pid to the
1966parent process, C<0> to the child process, or C<undef> if the fork is
1967unsuccessful. File descriptors (and sometimes locks on those descriptors)
1968are shared, while everything else is copied. On most systems supporting
1969fork(), great care has gone into making it extremely efficient (for
1970example, using copy-on-write technology on data pages), making it the
1971dominant paradigm for multitasking over the last few decades.
5a964f20 1972
0f897271
GS
1973Beginning with v5.6.0, Perl will attempt to flush all files opened for
1974output before forking the child process, but this may not be supported
1975on some platforms (see L<perlport>). To be safe, you may need to set
1976C<$|> ($AUTOFLUSH in English) or call the C<autoflush()> method of
1977C<IO::Handle> on any open handles in order to avoid duplicate output.
a0d0e21e 1978
19799a22 1979If you C<fork> without ever waiting on your children, you will
2b5ab1e7
TC
1980accumulate zombies. On some systems, you can avoid this by setting
1981C<$SIG{CHLD}> to C<"IGNORE">. See also L<perlipc> for more examples of
1982forking and reaping moribund children.
cb1a09d0 1983
28757baa 1984Note that if your forked child inherits system file descriptors like
1985STDIN and STDOUT that are actually connected by a pipe or socket, even
2b5ab1e7 1986if you exit, then the remote server (such as, say, a CGI script or a
19799a22 1987backgrounded job launched from a remote shell) won't think you're done.
2b5ab1e7 1988You should reopen those to F</dev/null> if it's any issue.
28757baa 1989
cb1a09d0 1990=item format
d74e8afc 1991X<format>
cb1a09d0 1992
19799a22 1993Declare a picture format for use by the C<write> function. For
cb1a09d0
AD
1994example:
1995
54310121 1996 format Something =
cb1a09d0
AD
1997 Test: @<<<<<<<< @||||| @>>>>>
1998 $str, $%, '$' . int($num)
1999 .
2000
2001 $str = "widget";
184e9718 2002 $num = $cost/$quantity;
cb1a09d0
AD
2003 $~ = 'Something';
2004 write;
2005
2006See L<perlform> for many details and examples.
2007
8903cb82 2008=item formline PICTURE,LIST
d74e8afc 2009X<formline>
a0d0e21e 2010
5a964f20 2011This is an internal function used by C<format>s, though you may call it,
a0d0e21e
LW
2012too. It formats (see L<perlform>) a list of values according to the
2013contents of PICTURE, placing the output into the format output
7660c0ab 2014accumulator, C<$^A> (or C<$ACCUMULATOR> in English).
19799a22 2015Eventually, when a C<write> is done, the contents of
cf264981
SP
2016C<$^A> are written to some filehandle. You could also read C<$^A>
2017and then set C<$^A> back to C<"">. Note that a format typically
19799a22 2018does one C<formline> per line of form, but the C<formline> function itself
748a9306 2019doesn't care how many newlines are embedded in the PICTURE. This means
4633a7c4 2020that the C<~> and C<~~> tokens will treat the entire PICTURE as a single line.
748a9306
LW
2021You may therefore need to use multiple formlines to implement a single
2022record format, just like the format compiler.
2023
19799a22 2024Be careful if you put double quotes around the picture, because an C<@>
748a9306 2025character may be taken to mean the beginning of an array name.
19799a22 2026C<formline> always returns true. See L<perlform> for other examples.
a0d0e21e
LW
2027
2028=item getc FILEHANDLE
f723aae1 2029X<getc> X<getchar> X<character> X<file, read>
a0d0e21e
LW
2030
2031=item getc
2032
2033Returns the next character from the input file attached to FILEHANDLE,
b5fe5ca2
SR
2034or the undefined value at end of file, or if there was an error (in
2035the latter case C<$!> is set). If FILEHANDLE is omitted, reads from
2036STDIN. This is not particularly efficient. However, it cannot be
2037used by itself to fetch single characters without waiting for the user
2038to hit enter. For that, try something more like:
4633a7c4
LW
2039
2040 if ($BSD_STYLE) {
2041 system "stty cbreak </dev/tty >/dev/tty 2>&1";
2042 }
2043 else {
54310121 2044 system "stty", '-icanon', 'eol', "\001";
4633a7c4
LW
2045 }
2046
2047 $key = getc(STDIN);
2048
2049 if ($BSD_STYLE) {
2050 system "stty -cbreak </dev/tty >/dev/tty 2>&1";
2051 }
2052 else {
5f05dabc 2053 system "stty", 'icanon', 'eol', '^@'; # ASCII null
4633a7c4
LW
2054 }
2055 print "\n";
2056
54310121 2057Determination of whether $BSD_STYLE should be set
2058is left as an exercise to the reader.
cb1a09d0 2059
19799a22 2060The C<POSIX::getattr> function can do this more portably on
2b5ab1e7
TC
2061systems purporting POSIX compliance. See also the C<Term::ReadKey>
2062module from your nearest CPAN site; details on CPAN can be found on
2063L<perlmodlib/CPAN>.
a0d0e21e
LW
2064
2065=item getlogin
d74e8afc 2066X<getlogin> X<login>
a0d0e21e 2067
cf264981 2068This implements the C library function of the same name, which on most
5a964f20 2069systems returns the current login from F</etc/utmp>, if any. If null,
19799a22 2070use C<getpwuid>.
a0d0e21e 2071
f86702cc 2072 $login = getlogin || getpwuid($<) || "Kilroy";
a0d0e21e 2073
19799a22
GS
2074Do not consider C<getlogin> for authentication: it is not as
2075secure as C<getpwuid>.
4633a7c4 2076
a0d0e21e 2077=item getpeername SOCKET
d74e8afc 2078X<getpeername> X<peer>
a0d0e21e
LW
2079
2080Returns the packed sockaddr address of other end of the SOCKET connection.
2081
4633a7c4
LW
2082 use Socket;
2083 $hersockaddr = getpeername(SOCK);
19799a22 2084 ($port, $iaddr) = sockaddr_in($hersockaddr);
4633a7c4
LW
2085 $herhostname = gethostbyaddr($iaddr, AF_INET);
2086 $herstraddr = inet_ntoa($iaddr);
a0d0e21e
LW
2087
2088=item getpgrp PID
d74e8afc 2089X<getpgrp> X<group>
a0d0e21e 2090
47e29363 2091Returns the current process group for the specified PID. Use
7660c0ab 2092a PID of C<0> to get the current process group for the
4633a7c4 2093current process. Will raise an exception if used on a machine that
f86cebdf 2094doesn't implement getpgrp(2). If PID is omitted, returns process
19799a22 2095group of current process. Note that the POSIX version of C<getpgrp>
7660c0ab 2096does not accept a PID argument, so only C<PID==0> is truly portable.
a0d0e21e
LW
2097
2098=item getppid
d74e8afc 2099X<getppid> X<parent> X<pid>
a0d0e21e
LW
2100
2101Returns the process id of the parent process.
2102
4d76a344
RGS
2103Note for Linux users: on Linux, the C functions C<getpid()> and
2104C<getppid()> return different values from different threads. In order to
2105be portable, this behavior is not reflected by the perl-level function
2106C<getppid()>, that returns a consistent value across threads. If you want
e3256f86
RGS
2107to call the underlying C<getppid()>, you may use the CPAN module
2108C<Linux::Pid>.
4d76a344 2109
a0d0e21e 2110=item getpriority WHICH,WHO
d74e8afc 2111X<getpriority> X<priority> X<nice>
a0d0e21e 2112
4633a7c4
LW
2113Returns the current priority for a process, a process group, or a user.
2114(See L<getpriority(2)>.) Will raise a fatal exception if used on a
f86cebdf 2115machine that doesn't implement getpriority(2).
a0d0e21e
LW
2116
2117=item getpwnam NAME
d74e8afc
ITB
2118X<getpwnam> X<getgrnam> X<gethostbyname> X<getnetbyname> X<getprotobyname>
2119X<getpwuid> X<getgrgid> X<getservbyname> X<gethostbyaddr> X<getnetbyaddr>
2120X<getprotobynumber> X<getservbyport> X<getpwent> X<getgrent> X<gethostent>
2121X<getnetent> X<getprotoent> X<getservent> X<setpwent> X<setgrent> X<sethostent>
2122X<setnetent> X<setprotoent> X<setservent> X<endpwent> X<endgrent> X<endhostent>
2123X<endnetent> X<endprotoent> X<endservent>
a0d0e21e
LW
2124
2125=item getgrnam NAME
2126
2127=item gethostbyname NAME
2128
2129=item getnetbyname NAME
2130
2131=item getprotobyname NAME
2132
2133=item getpwuid UID
2134
2135=item getgrgid GID
2136
2137=item getservbyname NAME,PROTO
2138
2139=item gethostbyaddr ADDR,ADDRTYPE
2140
2141=item getnetbyaddr ADDR,ADDRTYPE
2142
2143=item getprotobynumber NUMBER
2144
2145=item getservbyport PORT,PROTO
2146
2147=item getpwent
2148
2149=item getgrent
2150
2151=item gethostent
2152
2153=item getnetent
2154
2155=item getprotoent
2156
2157=item getservent
2158
2159=item setpwent
2160
2161=item setgrent
2162
2163=item sethostent STAYOPEN
2164
2165=item setnetent STAYOPEN
2166
2167=item setprotoent STAYOPEN
2168
2169=item setservent STAYOPEN
2170
2171=item endpwent
2172
2173=item endgrent
2174
2175=item endhostent
2176
2177=item endnetent
2178
2179=item endprotoent
2180
2181=item endservent
2182
2183These routines perform the same functions as their counterparts in the
5a964f20 2184system library. In list context, the return values from the
a0d0e21e
LW
2185various get routines are as follows:
2186
2187 ($name,$passwd,$uid,$gid,
6ee623d5 2188 $quota,$comment,$gcos,$dir,$shell,$expire) = getpw*
a0d0e21e
LW
2189 ($name,$passwd,$gid,$members) = getgr*
2190 ($name,$aliases,$addrtype,$length,@addrs) = gethost*
2191 ($name,$aliases,$addrtype,$net) = getnet*
2192 ($name,$aliases,$proto) = getproto*
2193 ($name,$aliases,$port,$proto) = getserv*
2194
2195(If the entry doesn't exist you get a null list.)
2196
4602f195
JH
2197The exact meaning of the $gcos field varies but it usually contains
2198the real name of the user (as opposed to the login name) and other
2199information pertaining to the user. Beware, however, that in many
2200system users are able to change this information and therefore it
106325ad 2201cannot be trusted and therefore the $gcos is tainted (see
2959b6e3
JH
2202L<perlsec>). The $passwd and $shell, user's encrypted password and
2203login shell, are also tainted, because of the same reason.
4602f195 2204
5a964f20 2205In scalar context, you get the name, unless the function was a
a0d0e21e
LW
2206lookup by name, in which case you get the other thing, whatever it is.
2207(If the entry doesn't exist you get the undefined value.) For example:
2208
5a964f20
TC
2209 $uid = getpwnam($name);
2210 $name = getpwuid($num);
2211 $name = getpwent();
2212 $gid = getgrnam($name);
08a33e13 2213 $name = getgrgid($num);
5a964f20
TC
2214 $name = getgrent();
2215 #etc.
a0d0e21e 2216
4602f195
JH
2217In I<getpw*()> the fields $quota, $comment, and $expire are special
2218cases in the sense that in many systems they are unsupported. If the
2219$quota is unsupported, it is an empty scalar. If it is supported, it
2220usually encodes the disk quota. If the $comment field is unsupported,
2221it is an empty scalar. If it is supported it usually encodes some
2222administrative comment about the user. In some systems the $quota
2223field may be $change or $age, fields that have to do with password
2224aging. In some systems the $comment field may be $class. The $expire
2225field, if present, encodes the expiration period of the account or the
2226password. For the availability and the exact meaning of these fields
2227in your system, please consult your getpwnam(3) documentation and your
2228F<pwd.h> file. You can also find out from within Perl what your
2229$quota and $comment fields mean and whether you have the $expire field
2230by using the C<Config> module and the values C<d_pwquota>, C<d_pwage>,
2231C<d_pwchange>, C<d_pwcomment>, and C<d_pwexpire>. Shadow password
2232files are only supported if your vendor has implemented them in the
2233intuitive fashion that calling the regular C library routines gets the
5d3a0a3b 2234shadow versions if you're running under privilege or if there exists
cf264981
SP
2235the shadow(3) functions as found in System V (this includes Solaris
2236and Linux.) Those systems that implement a proprietary shadow password
5d3a0a3b 2237facility are unlikely to be supported.
6ee623d5 2238
19799a22 2239The $members value returned by I<getgr*()> is a space separated list of
a0d0e21e
LW
2240the login names of the members of the group.
2241
2242For the I<gethost*()> functions, if the C<h_errno> variable is supported in
2243C, it will be returned to you via C<$?> if the function call fails. The
7660c0ab 2244C<@addrs> value returned by a successful call is a list of the raw
a0d0e21e
LW
2245addresses returned by the corresponding system library call. In the
2246Internet domain, each address is four bytes long and you can unpack it
2247by saying something like:
2248
f337b084 2249 ($a,$b,$c,$d) = unpack('W4',$addr[0]);
a0d0e21e 2250
2b5ab1e7
TC
2251The Socket library makes this slightly easier:
2252
2253 use Socket;
2254 $iaddr = inet_aton("127.1"); # or whatever address
2255 $name = gethostbyaddr($iaddr, AF_INET);
2256
2257 # or going the other way
19799a22 2258 $straddr = inet_ntoa($iaddr);
2b5ab1e7 2259
d760c846
GS
2260In the opposite way, to resolve a hostname to the IP address
2261you can write this:
2262
2263 use Socket;
2264 $packed_ip = gethostbyname("www.perl.org");
2265 if (defined $packed_ip) {
2266 $ip_address = inet_ntoa($packed_ip);
2267 }
2268
2269Make sure <gethostbyname()> is called in SCALAR context and that
2270its return value is checked for definedness.
2271
19799a22
GS
2272If you get tired of remembering which element of the return list
2273contains which return value, by-name interfaces are provided
2274in standard modules: C<File::stat>, C<Net::hostent>, C<Net::netent>,
2275C<Net::protoent>, C<Net::servent>, C<Time::gmtime>, C<Time::localtime>,
2276and C<User::grent>. These override the normal built-ins, supplying
2277versions that return objects with the appropriate names
2278for each field. For example:
5a964f20
TC
2279
2280 use File::stat;
2281 use User::pwent;
2282 $is_his = (stat($filename)->uid == pwent($whoever)->uid);
2283
b76cc8ba
NIS
2284Even though it looks like they're the same method calls (uid),
2285they aren't, because a C<File::stat> object is different from
19799a22 2286a C<User::pwent> object.
5a964f20 2287
a0d0e21e 2288=item getsockname SOCKET
d74e8afc 2289X<getsockname>
a0d0e21e 2290
19799a22
GS
2291Returns the packed sockaddr address of this end of the SOCKET connection,
2292in case you don't know the address because you have several different
2293IPs that the connection might have come in on.
a0d0e21e 2294
4633a7c4
LW
2295 use Socket;
2296 $mysockaddr = getsockname(SOCK);
19799a22 2297 ($port, $myaddr) = sockaddr_in($mysockaddr);
b76cc8ba 2298 printf "Connect to %s [%s]\n",
19799a22
GS
2299 scalar gethostbyaddr($myaddr, AF_INET),
2300 inet_ntoa($myaddr);
a0d0e21e
LW
2301
2302=item getsockopt SOCKET,LEVEL,OPTNAME
d74e8afc 2303X<getsockopt>
a0d0e21e 2304
636e6b1f
TH
2305Queries the option named OPTNAME associated with SOCKET at a given LEVEL.
2306Options may exist at multiple protocol levels depending on the socket
2307type, but at least the uppermost socket level SOL_SOCKET (defined in the
2308C<Socket> module) will exist. To query options at another level the
2309protocol number of the appropriate protocol controlling the option
2310should be supplied. For example, to indicate that an option is to be
2311interpreted by the TCP protocol, LEVEL should be set to the protocol
2312number of TCP, which you can get using getprotobyname.
2313
2314The call returns a packed string representing the requested socket option,
2315or C<undef> if there is an error (the error reason will be in $!). What
2316exactly is in the packed string depends in the LEVEL and OPTNAME, consult
2317your system documentation for details. A very common case however is that
cf264981 2318the option is an integer, in which case the result will be a packed
636e6b1f
TH
2319integer which you can decode using unpack with the C<i> (or C<I>) format.
2320
2321An example testing if Nagle's algorithm is turned on on a socket:
2322
4852725b 2323 use Socket qw(:all);
636e6b1f
TH
2324
2325 defined(my $tcp = getprotobyname("tcp"))
2326 or die "Could not determine the protocol number for tcp";
4852725b
DD
2327 # my $tcp = IPPROTO_TCP; # Alternative
2328 my $packed = getsockopt($socket, $tcp, TCP_NODELAY)
2329 or die "Could not query TCP_NODELAY socket option: $!";
636e6b1f
TH
2330 my $nodelay = unpack("I", $packed);
2331 print "Nagle's algorithm is turned ", $nodelay ? "off\n" : "on\n";
2332
a0d0e21e
LW
2333
2334=item glob EXPR
d74e8afc 2335X<glob> X<wildcard> X<filename, expansion> X<expand>
a0d0e21e 2336
0a753a76 2337=item glob
2338
d9a9d457
JL
2339In list context, returns a (possibly empty) list of filename expansions on
2340the value of EXPR such as the standard Unix shell F</bin/csh> would do. In
2341scalar context, glob iterates through such filename expansions, returning
2342undef when the list is exhausted. This is the internal function
2343implementing the C<< <*.c> >> operator, but you can use it directly. If
2344EXPR is omitted, C<$_> is used. The C<< <*.c> >> operator is discussed in
2345more detail in L<perlop/"I/O Operators">.
a0d0e21e 2346
3a4b19e4
GS
2347Beginning with v5.6.0, this operator is implemented using the standard
2348C<File::Glob> extension. See L<File::Glob> for details.
2349
a0d0e21e 2350=item gmtime EXPR
d74e8afc 2351X<gmtime> X<UTC> X<Greenwich>
a0d0e21e 2352
ce2984c3
PF
2353=item gmtime
2354
435fbc73
GS
2355Works just like L<localtime> but the returned values are
2356localized for the standard Greenwich time zone.
a0d0e21e 2357
435fbc73
GS
2358Note: when called in list context, $isdst, the last value
2359returned by gmtime is always C<0>. There is no
2360Daylight Saving Time in GMT.
0a753a76 2361
62aa5637
MS
2362See L<perlport/gmtime> for portability concerns.
2363
a0d0e21e 2364=item goto LABEL
d74e8afc 2365X<goto> X<jump> X<jmp>
a0d0e21e 2366
748a9306
LW
2367=item goto EXPR
2368
a0d0e21e
LW
2369=item goto &NAME
2370
7660c0ab 2371The C<goto-LABEL> form finds the statement labeled with LABEL and resumes
a0d0e21e 2372execution there. It may not be used to go into any construct that
7660c0ab 2373requires initialization, such as a subroutine or a C<foreach> loop. It
0a753a76 2374also can't be used to go into a construct that is optimized away,
19799a22 2375or to get out of a block or subroutine given to C<sort>.
0a753a76 2376It can be used to go almost anywhere else within the dynamic scope,
a0d0e21e 2377including out of subroutines, but it's usually better to use some other
19799a22 2378construct such as C<last> or C<die>. The author of Perl has never felt the
7660c0ab 2379need to use this form of C<goto> (in Perl, that is--C is another matter).
1b6921cb
BT
2380(The difference being that C does not offer named loops combined with
2381loop control. Perl does, and this replaces most structured uses of C<goto>
2382in other languages.)
a0d0e21e 2383
7660c0ab
A
2384The C<goto-EXPR> form expects a label name, whose scope will be resolved
2385dynamically. This allows for computed C<goto>s per FORTRAN, but isn't
748a9306
LW
2386necessarily recommended if you're optimizing for maintainability:
2387
2388 goto ("FOO", "BAR", "GLARCH")[$i];
2389
1b6921cb
BT
2390The C<goto-&NAME> form is quite different from the other forms of
2391C<goto>. In fact, it isn't a goto in the normal sense at all, and
2392doesn't have the stigma associated with other gotos. Instead, it
2393exits the current subroutine (losing any changes set by local()) and
2394immediately calls in its place the named subroutine using the current
2395value of @_. This is used by C<AUTOLOAD> subroutines that wish to
2396load another subroutine and then pretend that the other subroutine had
2397been called in the first place (except that any modifications to C<@_>
6cb9131c
GS
2398in the current subroutine are propagated to the other subroutine.)
2399After the C<goto>, not even C<caller> will be able to tell that this
2400routine was called first.
2401
2402NAME needn't be the name of a subroutine; it can be a scalar variable
cf264981 2403containing a code reference, or a block that evaluates to a code
6cb9131c 2404reference.
a0d0e21e
LW
2405
2406=item grep BLOCK LIST
d74e8afc 2407X<grep>
a0d0e21e
LW
2408
2409=item grep EXPR,LIST
2410
2b5ab1e7
TC
2411This is similar in spirit to, but not the same as, grep(1) and its
2412relatives. In particular, it is not limited to using regular expressions.
2f9daede 2413
a0d0e21e 2414Evaluates the BLOCK or EXPR for each element of LIST (locally setting
7660c0ab 2415C<$_> to each element) and returns the list value consisting of those
19799a22
GS
2416elements for which the expression evaluated to true. In scalar
2417context, returns the number of times the expression was true.
a0d0e21e
LW
2418
2419 @foo = grep(!/^#/, @bar); # weed out comments
2420
2421or equivalently,
2422
2423 @foo = grep {!/^#/} @bar; # weed out comments
2424
be3174d2
GS
2425Note that C<$_> is an alias to the list value, so it can be used to
2426modify the elements of the LIST. While this is useful and supported,
2427it can cause bizarre results if the elements of LIST are not variables.
2b5ab1e7
TC
2428Similarly, grep returns aliases into the original list, much as a for
2429loop's index variable aliases the list elements. That is, modifying an
19799a22
GS
2430element of a list returned by grep (for example, in a C<foreach>, C<map>
2431or another C<grep>) actually modifies the element in the original list.
2b5ab1e7 2432This is usually something to be avoided when writing clear code.
a0d0e21e 2433
a4fb8298 2434If C<$_> is lexical in the scope where the C<grep> appears (because it has
cf264981 2435been declared with C<my $_>) then, in addition to being locally aliased to
a4fb8298
RGS
2436the list elements, C<$_> keeps being lexical inside the block; i.e. it
2437can't be seen from the outside, avoiding any potential side-effects.
2438
19799a22 2439See also L</map> for a list composed of the results of the BLOCK or EXPR.
38325410 2440
a0d0e21e 2441=item hex EXPR
d74e8afc 2442X<hex> X<hexadecimal>
a0d0e21e 2443
54310121 2444=item hex
bbce6d69 2445
2b5ab1e7 2446Interprets EXPR as a hex string and returns the corresponding value.
38366c11 2447(To convert strings that might start with either C<0>, C<0x>, or C<0b>, see
2b5ab1e7 2448L</oct>.) If EXPR is omitted, uses C<$_>.
2f9daede
TP
2449
2450 print hex '0xAf'; # prints '175'
2451 print hex 'aF'; # same
a0d0e21e 2452
19799a22 2453Hex strings may only represent integers. Strings that would cause
53305cf1 2454integer overflow trigger a warning. Leading whitespace is not stripped,
38366c11
DN
2455unlike oct(). To present something as hex, look into L</printf>,
2456L</sprintf>, or L</unpack>.
19799a22 2457
ce2984c3 2458=item import LIST
d74e8afc 2459X<import>
a0d0e21e 2460
19799a22 2461There is no builtin C<import> function. It is just an ordinary
4633a7c4 2462method (subroutine) defined (or inherited) by modules that wish to export
19799a22 2463names to another module. The C<use> function calls the C<import> method
cea6626f 2464for the package used. See also L</use>, L<perlmod>, and L<Exporter>.
a0d0e21e
LW
2465
2466=item index STR,SUBSTR,POSITION
d74e8afc 2467X<index> X<indexOf> X<InStr>
a0d0e21e
LW
2468
2469=item index STR,SUBSTR
2470
2b5ab1e7
TC
2471The index function searches for one string within another, but without
2472the wildcard-like behavior of a full regular-expression pattern match.
2473It returns the position of the first occurrence of SUBSTR in STR at
2474or after POSITION. If POSITION is omitted, starts searching from the
26f149de
YST
2475beginning of the string. POSITION before the beginning of the string
2476or after its end is treated as if it were the beginning or the end,
2477respectively. POSITION and the return value are based at C<0> (or whatever
2b5ab1e7 2478you've set the C<$[> variable to--but don't do that). If the substring
cf264981 2479is not found, C<index> returns one less than the base, ordinarily C<-1>.
a0d0e21e
LW
2480
2481=item int EXPR
f723aae1 2482X<int> X<integer> X<truncate> X<trunc> X<floor>
a0d0e21e 2483
54310121 2484=item int
bbce6d69 2485
7660c0ab 2486Returns the integer portion of EXPR. If EXPR is omitted, uses C<$_>.
2b5ab1e7
TC
2487You should not use this function for rounding: one because it truncates
2488towards C<0>, and two because machine representations of floating point
2489numbers can sometimes produce counterintuitive results. For example,
2490C<int(-6.725/0.025)> produces -268 rather than the correct -269; that's
2491because it's really more like -268.99999999999994315658 instead. Usually,
19799a22 2492the C<sprintf>, C<printf>, or the C<POSIX::floor> and C<POSIX::ceil>
2b5ab1e7 2493functions will serve you better than will int().
a0d0e21e
LW
2494
2495=item ioctl FILEHANDLE,FUNCTION,SCALAR
d74e8afc 2496X<ioctl>
a0d0e21e 2497
2b5ab1e7 2498Implements the ioctl(2) function. You'll probably first have to say
a0d0e21e 2499
6c567752 2500 require "sys/ioctl.ph"; # probably in $Config{archlib}/sys/ioctl.ph
a0d0e21e 2501
a11c483f 2502to get the correct function definitions. If F<sys/ioctl.ph> doesn't
a0d0e21e 2503exist or doesn't have the correct definitions you'll have to roll your
61eff3bc 2504own, based on your C header files such as F<< <sys/ioctl.h> >>.
5a964f20 2505(There is a Perl script called B<h2ph> that comes with the Perl kit that
54310121 2506may help you in this, but it's nontrivial.) SCALAR will be read and/or
4633a7c4 2507written depending on the FUNCTION--a pointer to the string value of SCALAR
19799a22 2508will be passed as the third argument of the actual C<ioctl> call. (If SCALAR
4633a7c4
LW
2509has no string value but does have a numeric value, that value will be
2510passed rather than a pointer to the string value. To guarantee this to be
19799a22
GS
2511true, add a C<0> to the scalar before using it.) The C<pack> and C<unpack>
2512functions may be needed to manipulate the values of structures used by
b76cc8ba 2513C<ioctl>.
a0d0e21e 2514
19799a22 2515The return value of C<ioctl> (and C<fcntl>) is as follows:
a0d0e21e
LW
2516
2517 if OS returns: then Perl returns:
2518 -1 undefined value
2519 0 string "0 but true"
2520 anything else that number
2521
19799a22 2522Thus Perl returns true on success and false on failure, yet you can
a0d0e21e
LW
2523still easily determine the actual value returned by the operating
2524system:
2525
2b5ab1e7 2526 $retval = ioctl(...) || -1;
a0d0e21e
LW
2527 printf "System returned %d\n", $retval;
2528
be2f7487 2529The special string C<"0 but true"> is exempt from B<-w> complaints
5a964f20
TC
2530about improper numeric conversions.
2531
a0d0e21e 2532=item join EXPR,LIST
d74e8afc 2533X<join>
a0d0e21e 2534
2b5ab1e7
TC
2535Joins the separate strings of LIST into a single string with fields
2536separated by the value of EXPR, and returns that new string. Example:
a0d0e21e 2537
2b5ab1e7 2538 $rec = join(':', $login,$passwd,$uid,$gid,$gcos,$home,$shell);
a0d0e21e 2539
eb6e2d6f
GS
2540Beware that unlike C<split>, C<join> doesn't take a pattern as its
2541first argument. Compare L</split>.
a0d0e21e 2542
aa689395 2543=item keys HASH
d74e8afc 2544X<keys> X<key>
aa689395 2545
aeedbbed
NC
2546=item keys ARRAY
2547
2548Returns a list consisting of all the keys of the named hash, or the indices
2549of an array. (In scalar context, returns the number of keys or indices.)
504f80c1 2550
aeedbbed 2551The keys of a hash are returned in an apparently random order. The actual
504f80c1
JH
2552random order is subject to change in future versions of perl, but it
2553is guaranteed to be the same order as either the C<values> or C<each>
4546b9e6
JH
2554function produces (given that the hash has not been modified). Since
2555Perl 5.8.1 the ordering is different even between different runs of
2556Perl for security reasons (see L<perlsec/"Algorithmic Complexity
d6df3700 2557Attacks">).
504f80c1 2558
aeedbbed 2559As a side effect, calling keys() resets the HASH or ARRAY's internal iterator
cf264981
SP
2560(see L</each>). In particular, calling keys() in void context resets
2561the iterator with no other overhead.
a0d0e21e 2562
aa689395 2563Here is yet another way to print your environment:
a0d0e21e
LW
2564
2565 @keys = keys %ENV;
2566 @values = values %ENV;
b76cc8ba 2567 while (@keys) {
a0d0e21e
LW
2568 print pop(@keys), '=', pop(@values), "\n";
2569 }
2570
2571or how about sorted by key:
2572
2573 foreach $key (sort(keys %ENV)) {
2574 print $key, '=', $ENV{$key}, "\n";
2575 }
2576
8ea1e5d4
GS
2577The returned values are copies of the original keys in the hash, so
2578modifying them will not affect the original hash. Compare L</values>.
2579
19799a22 2580To sort a hash by value, you'll need to use a C<sort> function.
aa689395 2581Here's a descending numeric sort of a hash by its values:
4633a7c4 2582
5a964f20 2583 foreach $key (sort { $hash{$b} <=> $hash{$a} } keys %hash) {
4633a7c4
LW
2584 printf "%4d %s\n", $hash{$key}, $key;
2585 }
2586
19799a22 2587As an lvalue C<keys> allows you to increase the number of hash buckets
aa689395 2588allocated for the given hash. This can gain you a measure of efficiency if
2589you know the hash is going to get big. (This is similar to pre-extending
2590an array by assigning a larger number to $#array.) If you say
55497cff 2591
2592 keys %hash = 200;
2593
ab192400
GS
2594then C<%hash> will have at least 200 buckets allocated for it--256 of them,
2595in fact, since it rounds up to the next power of two. These
55497cff 2596buckets will be retained even if you do C<%hash = ()>, use C<undef
2597%hash> if you want to free the storage while C<%hash> is still in scope.
2598You can't shrink the number of buckets allocated for the hash using
19799a22 2599C<keys> in this way (but you needn't worry about doing this by accident,
aeedbbed
NC
2600as trying has no effect). C<keys @array> in an lvalue context is a syntax
2601error.
55497cff 2602
19799a22 2603See also C<each>, C<values> and C<sort>.
ab192400 2604
b350dd2f 2605=item kill SIGNAL, LIST
d74e8afc 2606X<kill> X<signal>
a0d0e21e 2607
b350dd2f 2608Sends a signal to a list of processes. Returns the number of
517db077
GS
2609processes successfully signaled (which is not necessarily the
2610same as the number actually killed).
a0d0e21e
LW
2611
2612 $cnt = kill 1, $child1, $child2;
2613 kill 9, @goners;
2614
70fb64f6 2615If SIGNAL is zero, no signal is sent to the process, but the kill(2)
6cb9d3e4 2616system call will check whether it's possible to send a signal to it (that
70fb64f6
RGS
2617means, to be brief, that the process is owned by the same user, or we are
2618the super-user). This is a useful way to check that a child process is
81fd35db
DN
2619alive (even if only as a zombie) and hasn't changed its UID. See
2620L<perlport> for notes on the portability of this construct.
b350dd2f
GS
2621
2622Unlike in the shell, if SIGNAL is negative, it kills
4633a7c4
LW
2623process groups instead of processes. (On System V, a negative I<PROCESS>
2624number will also kill process groups, but that's not portable.) That
2625means you usually want to use positive not negative signals. You may also
1e9c1022
JL
2626use a signal name in quotes.
2627
2628See L<perlipc/"Signals"> for more details.
a0d0e21e
LW
2629
2630=item last LABEL
d74e8afc 2631X<last> X<break>
a0d0e21e
LW
2632
2633=item last
2634
2635The C<last> command is like the C<break> statement in C (as used in
2636loops); it immediately exits the loop in question. If the LABEL is
2637omitted, the command refers to the innermost enclosing loop. The
2638C<continue> block, if any, is not executed:
2639
4633a7c4
LW
2640 LINE: while (<STDIN>) {
2641 last LINE if /^$/; # exit when done with header
5a964f20 2642 #...
a0d0e21e
LW
2643 }
2644
4968c1e4 2645C<last> cannot be used to exit a block which returns a value such as
2b5ab1e7
TC
2646C<eval {}>, C<sub {}> or C<do {}>, and should not be used to exit
2647a grep() or map() operation.
4968c1e4 2648
6c1372ed
GS
2649Note that a block by itself is semantically identical to a loop
2650that executes once. Thus C<last> can be used to effect an early
2651exit out of such a block.
2652
98293880
JH
2653See also L</continue> for an illustration of how C<last>, C<next>, and
2654C<redo> work.
1d2dff63 2655
a0d0e21e 2656=item lc EXPR
d74e8afc 2657X<lc> X<lowercase>
a0d0e21e 2658
54310121 2659=item lc
bbce6d69 2660
d1be9408 2661Returns a lowercased version of EXPR. This is the internal function
ad0029c4
JH
2662implementing the C<\L> escape in double-quoted strings. Respects
2663current LC_CTYPE locale if C<use locale> in force. See L<perllocale>
983ffd37 2664and L<perlunicode> for more details about locale and Unicode support.
a0d0e21e 2665
7660c0ab 2666If EXPR is omitted, uses C<$_>.
bbce6d69 2667
a0d0e21e 2668=item lcfirst EXPR
d74e8afc 2669X<lcfirst> X<lowercase>
a0d0e21e 2670
54310121 2671=item lcfirst
bbce6d69 2672
ad0029c4
JH
2673Returns the value of EXPR with the first character lowercased. This
2674is the internal function implementing the C<\l> escape in
2675double-quoted strings. Respects current LC_CTYPE locale if C<use
983ffd37
JH
2676locale> in force. See L<perllocale> and L<perlunicode> for more
2677details about locale and Unicode support.
a0d0e21e 2678
7660c0ab 2679If EXPR is omitted, uses C<$_>.
bbce6d69 2680
a0d0e21e 2681=item length EXPR
d74e8afc 2682X<length> X<size>
a0d0e21e 2683
54310121 2684=item length
bbce6d69 2685
974da8e5 2686Returns the length in I<characters> of the value of EXPR. If EXPR is
9f621bb0
NC
2687omitted, returns length of C<$_>. If EXPR is undefined, returns C<undef>.
2688Note that this cannot be used on an entire array or hash to find out how
2689many elements these have. For that, use C<scalar @array> and C<scalar keys
2690%hash> respectively.
a0d0e21e 2691
974da8e5
JH
2692Note the I<characters>: if the EXPR is in Unicode, you will get the
2693number of characters, not the number of bytes. To get the length
2575c402
JW
2694of the internal string in bytes, use C<bytes::length(EXPR)>, see
2695L<bytes>. Note that the internal encoding is variable, and the number
2696of bytes usually meaningless. To get the number of bytes that the
2697string would have when encoded as UTF-8, use
2698C<length(Encoding::encode_utf8(EXPR))>.
974da8e5 2699
a0d0e21e 2700=item link OLDFILE,NEWFILE
d74e8afc 2701X<link>
a0d0e21e 2702
19799a22 2703Creates a new filename linked to the old filename. Returns true for
b76cc8ba 2704success, false otherwise.
a0d0e21e
LW
2705
2706=item listen SOCKET,QUEUESIZE
d74e8afc 2707X<listen>
a0d0e21e 2708
19799a22 2709Does the same thing that the listen system call does. Returns true if
b76cc8ba 2710it succeeded, false otherwise. See the example in
cea6626f 2711L<perlipc/"Sockets: Client/Server Communication">.
a0d0e21e
LW
2712
2713=item local EXPR
d74e8afc 2714X<local>
a0d0e21e 2715
19799a22 2716You really probably want to be using C<my> instead, because C<local> isn't
b76cc8ba 2717what most people think of as "local". See
13a2d996 2718L<perlsub/"Private Variables via my()"> for details.
2b5ab1e7 2719
5a964f20
TC
2720A local modifies the listed variables to be local to the enclosing
2721block, file, or eval. If more than one value is listed, the list must
2722be placed in parentheses. See L<perlsub/"Temporary Values via local()">
2723for details, including issues with tied arrays and hashes.
a0d0e21e 2724
a0d0e21e 2725=item localtime EXPR
435fbc73 2726X<localtime> X<ctime>
a0d0e21e 2727
ba053783
AL
2728=item localtime
2729
19799a22 2730Converts a time as returned by the time function to a 9-element list
5f05dabc 2731with the time analyzed for the local time zone. Typically used as
a0d0e21e
LW
2732follows:
2733
54310121 2734 # 0 1 2 3 4 5 6 7 8
a0d0e21e 2735 ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) =
ba053783 2736 localtime(time);
a0d0e21e 2737
48a26b3a 2738All list elements are numeric, and come straight out of the C `struct
ba053783
AL
2739tm'. C<$sec>, C<$min>, and C<$hour> are the seconds, minutes, and hours
2740of the specified time.
48a26b3a 2741
ba053783
AL
2742C<$mday> is the day of the month, and C<$mon> is the month itself, in
2743the range C<0..11> with 0 indicating January and 11 indicating December.
2744This makes it easy to get a month name from a list:
54310121 2745
ba053783
AL
2746 my @abbr = qw( Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec );
2747 print "$abbr[$mon] $mday";
2748 # $mon=9, $mday=18 gives "Oct 18"
abd75f24 2749
ba053783
AL
2750C<$year> is the number of years since 1900, not just the last two digits
2751of the year. That is, C<$year> is C<123> in year 2023. The proper way
2752to get a complete 4-digit year is simply:
abd75f24 2753
ba053783 2754 $year += 1900;
abd75f24 2755
435fbc73
GS
2756Otherwise you create non-Y2K-compliant programs--and you wouldn't want
2757to do that, would you?
2758
ba053783
AL
2759To get the last two digits of the year (e.g., '01' in 2001) do:
2760
2761 $year = sprintf("%02d", $year % 100);
2762
2763C<$wday> is the day of the week, with 0 indicating Sunday and 3 indicating
2764Wednesday. C<$yday> is the day of the year, in the range C<0..364>
2765(or C<0..365> in leap years.)
2766
2767C<$isdst> is true if the specified time occurs during Daylight Saving
2768Time, false otherwise.
abd75f24 2769
e1998452 2770If EXPR is omitted, C<localtime()> uses the current time (as returned
e3176d09 2771by time(3)).
a0d0e21e 2772
48a26b3a 2773In scalar context, C<localtime()> returns the ctime(3) value:
a0d0e21e 2774
5f05dabc 2775 $now_string = localtime; # e.g., "Thu Oct 13 04:54:34 1994"
a0d0e21e 2776
fe86afc2
NC
2777This scalar value is B<not> locale dependent but is a Perl builtin. For GMT
2778instead of local time use the L</gmtime> builtin. See also the
2779C<Time::Local> module (to convert the second, minutes, hours, ... back to
2780the integer value returned by time()), and the L<POSIX> module's strftime(3)
2781and mktime(3) functions.
2782
2783To get somewhat similar but locale dependent date strings, set up your
2784locale environment variables appropriately (please see L<perllocale>) and
2785try for example:
a3cb178b 2786
5a964f20 2787 use POSIX qw(strftime);
2b5ab1e7 2788 $now_string = strftime "%a %b %e %H:%M:%S %Y", localtime;
fe86afc2
NC
2789 # or for GMT formatted appropriately for your locale:
2790 $now_string = strftime "%a %b %e %H:%M:%S %Y", gmtime;
a3cb178b
GS
2791
2792Note that the C<%a> and C<%b>, the short forms of the day of the week
2793and the month of the year, may not necessarily be three characters wide.
a0d0e21e 2794
62aa5637
MS
2795See L<perlport/localtime> for portability concerns.
2796
435fbc73
GS
2797The L<Time::gmtime> and L<Time::localtime> modules provides a convenient,
2798by-name access mechanism to the gmtime() and localtime() functions,
2799respectively.
2800
2801For a comprehensive date and time representation look at the
2802L<DateTime> module on CPAN.
2803
07698885 2804=item lock THING
d74e8afc 2805X<lock>
19799a22 2806
01e6739c 2807This function places an advisory lock on a shared variable, or referenced
03730085 2808object contained in I<THING> until the lock goes out of scope.
a6d5524e 2809
f3a23afb 2810lock() is a "weak keyword" : this means that if you've defined a function
67408cae 2811by this name (before any calls to it), that function will be called
03730085
AB
2812instead. (However, if you've said C<use threads>, lock() is always a
2813keyword.) See L<threads>.
19799a22 2814
a0d0e21e 2815=item log EXPR
d74e8afc 2816X<log> X<logarithm> X<e> X<ln> X<base>
a0d0e21e 2817
54310121 2818=item log
bbce6d69 2819
2b5ab1e7
TC
2820Returns the natural logarithm (base I<e>) of EXPR. If EXPR is omitted,
2821returns log of C<$_>. To get the log of another base, use basic algebra:
19799a22 2822The base-N log of a number is equal to the natural log of that number
2b5ab1e7
TC
2823divided by the natural log of N. For example:
2824
2825 sub log10 {
2826 my $n = shift;
2827 return log($n)/log(10);
b76cc8ba 2828 }
2b5ab1e7
TC
2829
2830See also L</exp> for the inverse operation.
a0d0e21e 2831
a0d0e21e 2832=item lstat EXPR
d74e8afc 2833X<lstat>
a0d0e21e 2834
54310121 2835=item lstat
bbce6d69 2836
19799a22 2837Does the same thing as the C<stat> function (including setting the
5a964f20
TC
2838special C<_> filehandle) but stats a symbolic link instead of the file
2839the symbolic link points to. If symbolic links are unimplemented on
c837d5b4
DP
2840your system, a normal C<stat> is done. For much more detailed
2841information, please see the documentation for C<stat>.
a0d0e21e 2842
7660c0ab 2843If EXPR is omitted, stats C<$_>.
bbce6d69 2844
a0d0e21e
LW
2845=item m//
2846
2847The match operator. See L<perlop>.
2848
2849=item map BLOCK LIST
d74e8afc 2850X<map>
a0d0e21e
LW
2851
2852=item map EXPR,LIST
2853
19799a22
GS
2854Evaluates the BLOCK or EXPR for each element of LIST (locally setting
2855C<$_> to each element) and returns the list value composed of the
2856results of each such evaluation. In scalar context, returns the
2857total number of elements so generated. Evaluates BLOCK or EXPR in
2858list context, so each element of LIST may produce zero, one, or
2859more elements in the returned value.
dd99ebda 2860
a0d0e21e
LW
2861 @chars = map(chr, @nums);
2862
2863translates a list of numbers to the corresponding characters. And
2864
d8216f19 2865 %hash = map { get_a_key_for($_) => $_ } @array;
a0d0e21e
LW
2866
2867is just a funny way to write
2868
2869 %hash = ();
d8216f19
RGS
2870 foreach (@array) {
2871 $hash{get_a_key_for($_)} = $_;
a0d0e21e
LW
2872 }
2873
be3174d2
GS
2874Note that C<$_> is an alias to the list value, so it can be used to
2875modify the elements of the LIST. While this is useful and supported,
2876it can cause bizarre results if the elements of LIST are not variables.
2b5ab1e7
TC
2877Using a regular C<foreach> loop for this purpose would be clearer in
2878most cases. See also L</grep> for an array composed of those items of
2879the original list for which the BLOCK or EXPR evaluates to true.
fb73857a 2880
a4fb8298 2881If C<$_> is lexical in the scope where the C<map> appears (because it has
d8216f19
RGS
2882been declared with C<my $_>), then, in addition to being locally aliased to
2883the list elements, C<$_> keeps being lexical inside the block; that is, it
a4fb8298
RGS
2884can't be seen from the outside, avoiding any potential side-effects.
2885
205fdb4d
NC
2886C<{> starts both hash references and blocks, so C<map { ...> could be either
2887the start of map BLOCK LIST or map EXPR, LIST. Because perl doesn't look
2888ahead for the closing C<}> it has to take a guess at which its dealing with
2889based what it finds just after the C<{>. Usually it gets it right, but if it
2890doesn't it won't realize something is wrong until it gets to the C<}> and
2891encounters the missing (or unexpected) comma. The syntax error will be
2892reported close to the C<}> but you'll need to change something near the C<{>
2893such as using a unary C<+> to give perl some help:
2894
2895 %hash = map { "\L$_", 1 } @array # perl guesses EXPR. wrong
2896 %hash = map { +"\L$_", 1 } @array # perl guesses BLOCK. right
2897 %hash = map { ("\L$_", 1) } @array # this also works
2898 %hash = map { lc($_), 1 } @array # as does this.
2899 %hash = map +( lc($_), 1 ), @array # this is EXPR and works!
cea6626f 2900
205fdb4d
NC
2901 %hash = map ( lc($_), 1 ), @array # evaluates to (1, @array)
2902
d8216f19 2903or to force an anon hash constructor use C<+{>:
205fdb4d
NC
2904
2905 @hashes = map +{ lc($_), 1 }, @array # EXPR, so needs , at end
2906
2907and you get list of anonymous hashes each with only 1 entry.
2908
19799a22 2909=item mkdir FILENAME,MASK
d74e8afc 2910X<mkdir> X<md> X<directory, create>
a0d0e21e 2911
5a211162
GS
2912=item mkdir FILENAME
2913
491873e5
RGS
2914=item mkdir
2915
0591cd52 2916Creates the directory specified by FILENAME, with permissions
19799a22
GS
2917specified by MASK (as modified by C<umask>). If it succeeds it
2918returns true, otherwise it returns false and sets C<$!> (errno).
491873e5
RGS
2919If omitted, MASK defaults to 0777. If omitted, FILENAME defaults
2920to C<$_>.
0591cd52 2921
19799a22 2922In general, it is better to create directories with permissive MASK,
0591cd52 2923and let the user modify that with their C<umask>, than it is to supply
19799a22 2924a restrictive MASK and give the user no way to be more permissive.
0591cd52
NT
2925The exceptions to this rule are when the file or directory should be
2926kept private (mail files, for instance). The perlfunc(1) entry on
19799a22 2927C<umask> discusses the choice of MASK in more detail.
a0d0e21e 2928
cc1852e8
JH
2929Note that according to the POSIX 1003.1-1996 the FILENAME may have any
2930number of trailing slashes. Some operating and filesystems do not get
2931this right, so Perl automatically removes all trailing slashes to keep
2932everyone happy.
2933
dd184578
RGS
2934In order to recursively create a directory structure look at
2935the C<mkpath> function of the L<File::Path> module.
2936
a0d0e21e 2937=item msgctl ID,CMD,ARG
d74e8afc 2938X<msgctl>
a0d0e21e 2939
f86cebdf 2940Calls the System V IPC function msgctl(2). You'll probably have to say
0ade1984
JH
2941
2942 use IPC::SysV;
2943
7660c0ab 2944first to get the correct constant definitions. If CMD is C<IPC_STAT>,
cf264981 2945then ARG must be a variable that will hold the returned C<msqid_ds>
951ba7fe
GS
2946structure. Returns like C<ioctl>: the undefined value for error,
2947C<"0 but true"> for zero, or the actual return value otherwise. See also
4755096e 2948L<perlipc/"SysV IPC">, C<IPC::SysV>, and C<IPC::Semaphore> documentation.
a0d0e21e
LW
2949
2950=item msgget KEY,FLAGS
d74e8afc 2951X<msgget>
a0d0e21e 2952
f86cebdf 2953Calls the System V IPC function msgget(2). Returns the message queue
4755096e
GS
2954id, or the undefined value if there is an error. See also
2955L<perlipc/"SysV IPC"> and C<IPC::SysV> and C<IPC::Msg> documentation.
a0d0e21e 2956
a0d0e21e 2957=item msgrcv ID,VAR,SIZE,TYPE,FLAGS
d74e8afc 2958X<msgrcv>
a0d0e21e
LW
2959
2960Calls the System V IPC function msgrcv to receive a message from
2961message queue ID into variable VAR with a maximum message size of
41d6edb2
JH
2962SIZE. Note that when a message is received, the message type as a
2963native long integer will be the first thing in VAR, followed by the
2964actual message. This packing may be opened with C<unpack("l! a*")>.
2965Taints the variable. Returns true if successful, or false if there is
4755096e
GS
2966an error. See also L<perlipc/"SysV IPC">, C<IPC::SysV>, and
2967C<IPC::SysV::Msg> documentation.
41d6edb2
JH
2968
2969=item msgsnd ID,MSG,FLAGS
d74e8afc 2970X<msgsnd>
41d6edb2
JH
2971
2972Calls the System V IPC function msgsnd to send the message MSG to the
2973message queue ID. MSG must begin with the native long integer message
2974type, and be followed by the length of the actual message, and finally
2975the message itself. This kind of packing can be achieved with
2976C<pack("l! a*", $type, $message)>. Returns true if successful,
2977or false if there is an error. See also C<IPC::SysV>
2978and C<IPC::SysV::Msg> documentation.
a0d0e21e
LW
2979
2980=item my EXPR
d74e8afc 2981X<my>
a0d0e21e 2982
307ea6df
JH
2983=item my TYPE EXPR
2984
1d2de774 2985=item my EXPR : ATTRS
09bef843 2986
1d2de774 2987=item my TYPE EXPR : ATTRS
307ea6df 2988
19799a22 2989A C<my> declares the listed variables to be local (lexically) to the
1d2de774
JH
2990enclosing block, file, or C<eval>. If more than one value is listed,
2991the list must be placed in parentheses.
307ea6df 2992
1d2de774
JH
2993The exact semantics and interface of TYPE and ATTRS are still
2994evolving. TYPE is currently bound to the use of C<fields> pragma,
307ea6df
JH
2995and attributes are handled using the C<attributes> pragma, or starting
2996from Perl 5.8.0 also via the C<Attribute::Handlers> module. See
2997L<perlsub/"Private Variables via my()"> for details, and L<fields>,
2998L<attributes>, and L<Attribute::Handlers>.
4633a7c4 2999
a0d0e21e 3000=item next LABEL
d74e8afc 3001X<next> X<continue>
a0d0e21e
LW
3002
3003=item next
3004
3005The C<next> command is like the C<continue> statement in C; it starts
3006the next iteration of the loop:
3007
4633a7c4
LW
3008 LINE: while (<STDIN>) {
3009 next LINE if /^#/; # discard comments
5a964f20 3010 #...
a0d0e21e
LW
3011 }
3012
3013Note that if there were a C<continue> block on the above, it would get
3014executed even on discarded lines. If the LABEL is omitted, the command
3015refers to the innermost enclosing loop.
3016
4968c1e4 3017C<next> cannot be used to exit a block which returns a value such as
2b5ab1e7
TC
3018C<eval {}>, C<sub {}> or C<do {}>, and should not be used to exit
3019a grep() or map() operation.
4968c1e4 3020
6c1372ed
GS
3021Note that a block by itself is semantically identical to a loop
3022that executes once. Thus C<next> will exit such a block early.
3023
98293880
JH
3024See also L</continue> for an illustration of how C<last>, C<next>, and
3025C<redo> work.
1d2dff63 3026
4a66ea5a 3027=item no Module VERSION LIST
d74e8afc 3028X<no>
4a66ea5a
RGS
3029
3030=item no Module VERSION
3031
a0d0e21e
LW
3032=item no Module LIST
3033
4a66ea5a
RGS
3034=item no Module
3035
c986422f
RGS
3036=item no VERSION
3037
593b9c14 3038See the C<use> function, of which C<no> is the opposite.
a0d0e21e
LW
3039
3040=item oct EXPR
d74e8afc 3041X<oct> X<octal> X<hex> X<hexadecimal> X<binary> X<bin>
a0d0e21e 3042
54310121 3043=item oct
bbce6d69 3044
4633a7c4 3045Interprets EXPR as an octal string and returns the corresponding
4f19785b
WSI
3046value. (If EXPR happens to start off with C<0x>, interprets it as a
3047hex string. If EXPR starts off with C<0b>, it is interpreted as a
53305cf1
NC
3048binary string. Leading whitespace is ignored in all three cases.)
3049The following will handle decimal, binary, octal, and hex in the standard
3050Perl or C notation:
a0d0e21e
LW
3051
3052 $val = oct($val) if $val =~ /^0/;
3053
19799a22
GS
3054If EXPR is omitted, uses C<$_>. To go the other way (produce a number
3055in octal), use sprintf() or printf():
3056
3057 $perms = (stat("filename"))[2] & 07777;
3058 $oct_perms = sprintf "%lo", $perms;
3059
3060The oct() function is commonly used when a string such as C<644> needs
3061to be converted into a file mode, for example. (Although perl will
3062automatically convert strings into numbers as needed, this automatic
3063conversion assumes base 10.)
a0d0e21e
LW
3064
3065=item open FILEHANDLE,EXPR
d74e8afc 3066X<open> X<pipe> X<file, open> X<fopen>
a0d0e21e 3067
68bd7414
NIS
3068=item open FILEHANDLE,MODE,EXPR
3069
3070=item open FILEHANDLE,MODE,EXPR,LIST
3071
ba964c95
T
3072=item open FILEHANDLE,MODE,REFERENCE
3073
a0d0e21e
LW
3074=item open FILEHANDLE
3075
3076Opens the file whose filename is given by EXPR, and associates it with
ed53a2bb
JH
3077FILEHANDLE.
3078
460b70c2
GS
3079Simple examples to open a file for reading:
3080
3081 open(my $fh, '<', "input.txt") or die $!;
3082
3083and for writing:
3084
3085 open(my $fh, '>', "output.txt") or die $!;
3086
ed53a2bb
JH
3087(The following is a comprehensive reference to open(): for a gentler
3088introduction you may consider L<perlopentut>.)
3089
a28cd5c9
NT
3090If FILEHANDLE is an undefined scalar variable (or array or hash element)
3091the variable is assigned a reference to a new anonymous filehandle,
3092otherwise if FILEHANDLE is an expression, its value is used as the name of
3093the real filehandle wanted. (This is considered a symbolic reference, so
3094C<use strict 'refs'> should I<not> be in effect.)
ed53a2bb
JH
3095
3096If EXPR is omitted, the scalar variable of the same name as the
3097FILEHANDLE contains the filename. (Note that lexical variables--those
3098declared with C<my>--will not work for this purpose; so if you're
67408cae 3099using C<my>, specify EXPR in your call to open.)
ed53a2bb
JH
3100
3101If three or more arguments are specified then the mode of opening and
3102the file name are separate. If MODE is C<< '<' >> or nothing, the file
3103is opened for input. If MODE is C<< '>' >>, the file is truncated and
3104opened for output, being created if necessary. If MODE is C<<< '>>' >>>,
b76cc8ba 3105the file is opened for appending, again being created if necessary.
5a964f20 3106
ed53a2bb
JH
3107You can put a C<'+'> in front of the C<< '>' >> or C<< '<' >> to
3108indicate that you want both read and write access to the file; thus
3109C<< '+<' >> is almost always preferred for read/write updates--the C<<
3110'+>' >> mode would clobber the file first. You can't usually use
3111either read-write mode for updating textfiles, since they have
3112variable length records. See the B<-i> switch in L<perlrun> for a
3113better approach. The file is created with permissions of C<0666>
3114modified by the process' C<umask> value.
3115
3116These various prefixes correspond to the fopen(3) modes of C<'r'>,
3117C<'r+'>, C<'w'>, C<'w+'>, C<'a'>, and C<'a+'>.
5f05dabc 3118
6170680b
IZ
3119In the 2-arguments (and 1-argument) form of the call the mode and
3120filename should be concatenated (in this order), possibly separated by
68bd7414
NIS
3121spaces. It is possible to omit the mode in these forms if the mode is
3122C<< '<' >>.
6170680b 3123
7660c0ab 3124If the filename begins with C<'|'>, the filename is interpreted as a
5a964f20 3125command to which output is to be piped, and if the filename ends with a
f244e06d
GS
3126C<'|'>, the filename is interpreted as a command which pipes output to
3127us. See L<perlipc/"Using open() for IPC">
19799a22 3128for more examples of this. (You are not allowed to C<open> to a command
5a964f20 3129that pipes both in I<and> out, but see L<IPC::Open2>, L<IPC::Open3>,
4a4eefd0
GS
3130and L<perlipc/"Bidirectional Communication with Another Process">
3131for alternatives.)
cb1a09d0 3132
ed53a2bb
JH
3133For three or more arguments if MODE is C<'|-'>, the filename is
3134interpreted as a command to which output is to be piped, and if MODE
3135is C<'-|'>, the filename is interpreted as a command which pipes
3136output to us. In the 2-arguments (and 1-argument) form one should
3137replace dash (C<'-'>) with the command.
3138See L<perlipc/"Using open() for IPC"> for more examples of this.
3139(You are not allowed to C<open> to a command that pipes both in I<and>
3140out, but see L<IPC::Open2>, L<IPC::Open3>, and
3141L<perlipc/"Bidirectional Communication"> for alternatives.)
3142
3143In the three-or-more argument form of pipe opens, if LIST is specified
3144(extra arguments after the command name) then LIST becomes arguments
3145to the command invoked if the platform supports it. The meaning of
3146C<open> with more than three arguments for non-pipe modes is not yet
3147specified. Experimental "layers" may give extra LIST arguments
3148meaning.
6170680b
IZ
3149
3150In the 2-arguments (and 1-argument) form opening C<'-'> opens STDIN
b76cc8ba 3151and opening C<< '>-' >> opens STDOUT.
6170680b 3152
fae2c0fb
RGS
3153You may use the three-argument form of open to specify IO "layers"
3154(sometimes also referred to as "disciplines") to be applied to the handle
3155that affect how the input and output are processed (see L<open> and
3156L<PerlIO> for more details). For example
7207e29d 3157
460b70c2 3158 open(my $fh, "<:encoding(UTF-8)", "file")
9124316e
JH
3159
3160will open the UTF-8 encoded file containing Unicode characters,
6d5e88a0
TS
3161see L<perluniintro>. Note that if layers are specified in the
3162three-arg form then default layers stored in ${^OPEN} (see L<perlvar>;
3163usually set by the B<open> pragma or the switch B<-CioD>) are ignored.
ed53a2bb
JH
3164
3165Open returns nonzero upon success, the undefined value otherwise. If
3166the C<open> involved a pipe, the return value happens to be the pid of
3167the subprocess.
cb1a09d0 3168
ed53a2bb
JH
3169If you're running Perl on a system that distinguishes between text
3170files and binary files, then you should check out L</binmode> for tips
3171for dealing with this. The key distinction between systems that need
3172C<binmode> and those that don't is their text file formats. Systems
8939ba94 3173like Unix, Mac OS, and Plan 9, which delimit lines with a single
ed53a2bb
JH
3174character, and which encode that character in C as C<"\n">, do not
3175need C<binmode>. The rest need it.
cb1a09d0 3176
fb73857a 3177When opening a file, it's usually a bad idea to continue normal execution
19799a22
GS
3178if the request failed, so C<open> is frequently used in connection with
3179C<die>. Even if C<die> won't do what you want (say, in a CGI script,
fb73857a 3180where you want to make a nicely formatted error message (but there are
5a964f20 3181modules that can help with that problem)) you should always check
19799a22 3182the return value from opening a file. The infrequent exception is when
fb73857a 3183working with an unopened filehandle is actually what you want to do.
3184
cf264981 3185As a special case the 3-arg form with a read/write mode and the third
ed53a2bb 3186argument being C<undef>:
b76cc8ba 3187
460b70c2 3188 open(my $tmp, "+>", undef) or die ...
b76cc8ba 3189
f253e835
JH
3190opens a filehandle to an anonymous temporary file. Also using "+<"
3191works for symmetry, but you really should consider writing something
3192to the temporary file first. You will need to seek() to do the
3193reading.
b76cc8ba 3194
2ce64696 3195Since v5.8.0, perl has built using PerlIO by default. Unless you've
28a5cf3b 3196changed this (i.e. Configure -Uuseperlio), you can open file handles to
2ce64696 3197"in memory" files held in Perl scalars via:
ba964c95 3198
b996200f
SB
3199 open($fh, '>', \$variable) || ..
3200
3201Though if you try to re-open C<STDOUT> or C<STDERR> as an "in memory"
3202file, you have to close it first:
3203
3204 close STDOUT;
3205 open STDOUT, '>', \$variable or die "Can't open STDOUT: $!";
ba964c95 3206
cb1a09d0 3207Examples:
a0d0e21e
LW
3208
3209 $ARTICLE = 100;
3210 open ARTICLE or die "Can't find article $ARTICLE: $!\n";
3211 while (<ARTICLE>) {...
3212
6170680b 3213 open(LOG, '>>/usr/spool/news/twitlog'); # (log is reserved)
fb73857a 3214 # if the open fails, output is discarded
a0d0e21e 3215
460b70c2 3216 open(my $dbase, '+<', 'dbase.mine') # open for update
fb73857a 3217 or die "Can't open 'dbase.mine' for update: $!";
cb1a09d0 3218
460b70c2 3219 open(my $dbase, '+<dbase.mine') # ditto
6170680b
IZ
3220 or die "Can't open 'dbase.mine' for update: $!";
3221
3222 open(ARTICLE, '-|', "caesar <$article") # decrypt article
fb73857a 3223 or die "Can't start caesar: $!";
a0d0e21e 3224
6170680b
IZ
3225 open(ARTICLE, "caesar <$article |") # ditto
3226 or die "Can't start caesar: $!";
3227
2359510d 3228 open(EXTRACT, "|sort >Tmp$$") # $$ is our process id
fb73857a 3229 or die "Can't start sort: $!";
a0d0e21e 3230
ba964c95
T
3231 # in memory files
3232 open(MEMORY,'>', \$var)
3233 or die "Can't open memory file: $!";
3234 print MEMORY "foo!\n"; # output will end up in $var
3235
a0d0e21e
LW
3236 # process argument list of files along with any includes
3237
3238 foreach $file (@ARGV) {
3239 process($file, 'fh00');
3240 }
3241
3242 sub process {
5a964f20 3243 my($filename, $input) = @_;
a0d0e21e
LW
3244 $input++; # this is a string increment
3245 unless (open($input, $filename)) {
3246 print STDERR "Can't open $filename: $!\n";
3247 return;
3248 }
3249
5a964f20 3250 local $_;
a0d0e21e
LW
3251 while (<$input>) { # note use of indirection
3252 if (/^#include "(.*)"/) {
3253 process($1, $input);
3254 next;
3255 }
5a964f20 3256 #... # whatever
a0d0e21e
LW
3257 }
3258 }
3259
ae4c5402 3260See L<perliol> for detailed info on PerlIO.
2ce64696 3261
a0d0e21e 3262You may also, in the Bourne shell tradition, specify an EXPR beginning
00cafafa
JH
3263with C<< '>&' >>, in which case the rest of the string is interpreted
3264as the name of a filehandle (or file descriptor, if numeric) to be
3265duped (as L<dup(2)>) and opened. You may use C<&> after C<< > >>,
3266C<<< >> >>>, C<< < >>, C<< +> >>, C<<< +>> >>>, and C<< +< >>.
3267The mode you specify should match the mode of the original filehandle.
3268(Duping a filehandle does not take into account any existing contents
cf264981 3269of IO buffers.) If you use the 3-arg form then you can pass either a
00cafafa 3270number, the name of a filehandle or the normal "reference to a glob".
6170680b 3271
eae1b76b
SB
3272Here is a script that saves, redirects, and restores C<STDOUT> and
3273C<STDERR> using various methods:
a0d0e21e
LW
3274
3275 #!/usr/bin/perl
eae1b76b
SB
3276 open my $oldout, ">&STDOUT" or die "Can't dup STDOUT: $!";
3277 open OLDERR, ">&", \*STDERR or die "Can't dup STDERR: $!";
818c4caa 3278
eae1b76b
SB
3279 open STDOUT, '>', "foo.out" or die "Can't redirect STDOUT: $!";
3280 open STDERR, ">&STDOUT" or die "Can't dup STDOUT: $!";
a0d0e21e 3281
eae1b76b
SB
3282 select STDERR; $| = 1; # make unbuffered
3283 select STDOUT; $| = 1; # make unbuffered
a0d0e21e
LW
3284
3285 print STDOUT "stdout 1\n"; # this works for
3286 print STDERR "stderr 1\n"; # subprocesses too
3287
eae1b76b
SB
3288 open STDOUT, ">&", $oldout or die "Can't dup \$oldout: $!";
3289 open STDERR, ">&OLDERR" or die "Can't dup OLDERR: $!";
a0d0e21e
LW
3290
3291 print STDOUT "stdout 2\n";
3292 print STDERR "stderr 2\n";
3293
ef8b303f
JH
3294If you specify C<< '<&=X' >>, where C<X> is a file descriptor number
3295or a filehandle, then Perl will do an equivalent of C's C<fdopen> of
3296that file descriptor (and not call L<dup(2)>); this is more
3297parsimonious of file descriptors. For example:
a0d0e21e 3298
00cafafa 3299 # open for input, reusing the fileno of $fd
a0d0e21e 3300 open(FILEHANDLE, "<&=$fd")
df632fdf 3301
b76cc8ba 3302or
df632fdf 3303
b76cc8ba 3304 open(FILEHANDLE, "<&=", $fd)
a0d0e21e 3305
00cafafa
JH
3306or
3307
3308 # open for append, using the fileno of OLDFH
3309 open(FH, ">>&=", OLDFH)
3310
3311or
3312
3313 open(FH, ">>&=OLDFH")
3314
ef8b303f
JH
3315Being parsimonious on filehandles is also useful (besides being
3316parsimonious) for example when something is dependent on file
3317descriptors, like for example locking using flock(). If you do just
3318C<< open(A, '>>&B') >>, the filehandle A will not have the same file
3319descriptor as B, and therefore flock(A) will not flock(B), and vice
3320versa. But with C<< open(A, '>>&=B') >> the filehandles will share
3321the same file descriptor.
3322
3323Note that if you are using Perls older than 5.8.0, Perl will be using
3324the standard C libraries' fdopen() to implement the "=" functionality.
3325On many UNIX systems fdopen() fails when file descriptors exceed a
3326certain value, typically 255. For Perls 5.8.0 and later, PerlIO is
3327most often the default.
4af147f6 3328
df632fdf
JH
3329You can see whether Perl has been compiled with PerlIO or not by
3330running C<perl -V> and looking for C<useperlio=> line. If C<useperlio>
3331is C<define>, you have PerlIO, otherwise you don't.
3332
6170680b
IZ
3333If you open a pipe on the command C<'-'>, i.e., either C<'|-'> or C<'-|'>
3334with 2-arguments (or 1-argument) form of open(), then
a0d0e21e 3335there is an implicit fork done, and the return value of open is the pid
7660c0ab 3336of the child within the parent process, and C<0> within the child
184e9718 3337process. (Use C<defined($pid)> to determine whether the open was successful.)
a0d0e21e
LW
3338The filehandle behaves normally for the parent, but i/o to that
3339filehandle is piped from/to the STDOUT/STDIN of the child process.
3340In the child process the filehandle isn't opened--i/o happens from/to
3341the new STDOUT or STDIN. Typically this is used like the normal
3342piped open when you want to exercise more control over just how the
3343pipe command gets executed, such as when you are running setuid, and
54310121 3344don't want to have to scan shell commands for metacharacters.
6170680b 3345The following triples are more or less equivalent:
a0d0e21e
LW
3346
3347 open(FOO, "|tr '[a-z]' '[A-Z]'");
6170680b
IZ
3348 open(FOO, '|-', "tr '[a-z]' '[A-Z]'");
3349 open(FOO, '|-') || exec 'tr', '[a-z]', '[A-Z]';
b76cc8ba 3350 open(FOO, '|-', "tr", '[a-z]', '[A-Z]');
a0d0e21e
LW
3351
3352 open(FOO, "cat -n '$file'|");
6170680b
IZ
3353 open(FOO, '-|', "cat -n '$file'");
3354 open(FOO, '-|') || exec 'cat', '-n', $file;
b76cc8ba
NIS
3355 open(FOO, '-|', "cat", '-n', $file);
3356
3357The last example in each block shows the pipe as "list form", which is
64da03b2
JH
3358not yet supported on all platforms. A good rule of thumb is that if
3359your platform has true C<fork()> (in other words, if your platform is
3360UNIX) you can use the list form.
a0d0e21e 3361
4633a7c4
LW
3362See L<perlipc/"Safe Pipe Opens"> for more examples of this.
3363
0f897271
GS
3364Beginning with v5.6.0, Perl will attempt to flush all files opened for
3365output before any operation that may do a fork, but this may not be
3366supported on some platforms (see L<perlport>). To be safe, you may need
3367to set C<$|> ($AUTOFLUSH in English) or call the C<autoflush()> method
3368of C<IO::Handle> on any open handles.
3369
ed53a2bb
JH
3370On systems that support a close-on-exec flag on files, the flag will
3371be set for the newly opened file descriptor as determined by the value
3372of $^F. See L<perlvar/$^F>.
a0d0e21e 3373
0dccf244 3374Closing any piped filehandle causes the parent process to wait for the
e5218da5
GA
3375child to finish, and returns the status value in C<$?> and
3376C<${^CHILD_ERROR_NATIVE}>.
0dccf244 3377
ed53a2bb
JH
3378The filename passed to 2-argument (or 1-argument) form of open() will
3379have leading and trailing whitespace deleted, and the normal
3380redirection characters honored. This property, known as "magic open",
5a964f20 3381can often be used to good effect. A user could specify a filename of
7660c0ab 3382F<"rsh cat file |">, or you could change certain filenames as needed:
5a964f20
TC
3383
3384 $filename =~ s/(.*\.gz)\s*$/gzip -dc < $1|/;
3385 open(FH, $filename) or die "Can't open $filename: $!";
3386
6170680b
IZ
3387Use 3-argument form to open a file with arbitrary weird characters in it,
3388
3389 open(FOO, '<', $file);
3390
3391otherwise it's necessary to protect any leading and trailing whitespace:
5a964f20
TC
3392
3393 $file =~ s#^(\s)#./$1#;
3394 open(FOO, "< $file\0");
3395
a31a806a 3396(this may not work on some bizarre filesystems). One should
106325ad 3397conscientiously choose between the I<magic> and 3-arguments form
6170680b
IZ
3398of open():
3399
3400 open IN, $ARGV[0];
3401
3402will allow the user to specify an argument of the form C<"rsh cat file |">,
3403but will not work on a filename which happens to have a trailing space, while
3404
3405 open IN, '<', $ARGV[0];
3406
3407will have exactly the opposite restrictions.
3408
19799a22 3409If you want a "real" C C<open> (see L<open(2)> on your system), then you
6170680b
IZ
3410should use the C<sysopen> function, which involves no such magic (but
3411may use subtly different filemodes than Perl open(), which is mapped
3412to C fopen()). This is
5a964f20
TC
3413another way to protect your filenames from interpretation. For example:
3414
3415 use IO::Handle;
3416 sysopen(HANDLE, $path, O_RDWR|O_CREAT|O_EXCL)
3417 or die "sysopen $path: $!";
3418 $oldfh = select(HANDLE); $| = 1; select($oldfh);
38762f02 3419 print HANDLE "stuff $$\n";
5a964f20
TC
3420 seek(HANDLE, 0, 0);
3421 print "File contains: ", <HANDLE>;
3422
7660c0ab
A
3423Using the constructor from the C<IO::Handle> package (or one of its
3424subclasses, such as C<IO::File> or C<IO::Socket>), you can generate anonymous
5a964f20
TC
3425filehandles that have the scope of whatever variables hold references to
3426them, and automatically close whenever and however you leave that scope:
c07a80fd 3427
5f05dabc 3428 use IO::File;
5a964f20 3429 #...
c07a80fd 3430 sub read_myfile_munged {
3431 my $ALL = shift;
b0169937 3432 my $handle = IO::File->new;
c07a80fd 3433 open($handle, "myfile") or die "myfile: $!";
3434 $first = <$handle>
3435 or return (); # Automatically closed here.
3436 mung $first or die "mung failed"; # Or here.
3437 return $first, <$handle> if $ALL; # Or here.
3438 $first; # Or here.
3439 }
3440
b687b08b 3441See L</seek> for some details about mixing reading and writing.
a0d0e21e
LW
3442
3443=item opendir DIRHANDLE,EXPR
d74e8afc 3444X<opendir>
a0d0e21e 3445
19799a22
GS
3446Opens a directory named EXPR for processing by C<readdir>, C<telldir>,
3447C<seekdir>, C<rewinddir>, and C<closedir>. Returns true if successful.
a28cd5c9
NT
3448DIRHANDLE may be an expression whose value can be used as an indirect
3449dirhandle, usually the real dirhandle name. If DIRHANDLE is an undefined
3450scalar variable (or array or hash element), the variable is assigned a
3451reference to a new anonymous dirhandle.
a0d0e21e
LW
3452DIRHANDLEs have their own namespace separate from FILEHANDLEs.
3453
b0169937
GS
3454See example at C<readdir>.
3455
a0d0e21e 3456=item ord EXPR
d74e8afc 3457X<ord> X<encoding>
a0d0e21e 3458
54310121 3459=item ord
bbce6d69 3460
121910a4
JH
3461Returns the numeric (the native 8-bit encoding, like ASCII or EBCDIC,
3462or Unicode) value of the first character of EXPR. If EXPR is omitted,
3463uses C<$_>.
3464
3465For the reverse, see L</chr>.
2575c402 3466See L<perlunicode> for more about Unicode.
a0d0e21e 3467
77ca0c92 3468=item our EXPR
d74e8afc 3469X<our> X<global>
77ca0c92 3470
36fb85f3 3471=item our TYPE EXPR
307ea6df 3472
1d2de774 3473=item our EXPR : ATTRS
9969eac4 3474
1d2de774 3475=item our TYPE EXPR : ATTRS
307ea6df 3476
85d8b7d5 3477C<our> associates a simple name with a package variable in the current
65c680eb
MS
3478package for use within the current scope. When C<use strict 'vars'> is in
3479effect, C<our> lets you use declared global variables without qualifying
3480them with package names, within the lexical scope of the C<our> declaration.
3481In this way C<our> differs from C<use vars>, which is package scoped.
3482
cf264981 3483Unlike C<my>, which both allocates storage for a variable and associates
65c680eb
MS
3484a simple name with that storage for use within the current scope, C<our>
3485associates a simple name with a package variable in the current package,
3486for use within the current scope. In other words, C<our> has the same
3487scoping rules as C<my>, but does not necessarily create a
3488variable.
3489
3490If more than one value is listed, the list must be placed
3491in parentheses.
85d8b7d5
MS
3492
3493 our $foo;
3494 our($bar, $baz);
77ca0c92 3495
f472eb5c
GS
3496An C<our> declaration declares a global variable that will be visible
3497across its entire lexical scope, even across package boundaries. The
3498package in which the variable is entered is determined at the point
3499of the declaration, not at the point of use. This means the following
3500behavior holds:
3501
3502 package Foo;
3503 our $bar; # declares $Foo::bar for rest of lexical scope
3504 $bar = 20;
3505
3506 package Bar;
65c680eb 3507 print $bar; # prints 20, as it refers to $Foo::bar
f472eb5c 3508
65c680eb
MS
3509Multiple C<our> declarations with the same name in the same lexical
3510scope are allowed if they are in different packages. If they happen
3511to be in the same package, Perl will emit warnings if you have asked
3512for them, just like multiple C<my> declarations. Unlike a second
3513C<my> declaration, which will bind the name to a fresh variable, a
3514second C<our> declaration in the same package, in the same scope, is
3515merely redundant.
f472eb5c
GS
3516
3517 use warnings;
3518 package Foo;
3519 our $bar; # declares $Foo::bar for rest of lexical scope
3520 $bar = 20;
3521
3522 package Bar;
3523 our $bar = 30; # declares $Bar::bar for rest of lexical scope
3524 print $bar; # prints 30
3525
65c680eb
MS
3526 our $bar; # emits warning but has no other effect
3527 print $bar; # still prints 30
f472eb5c 3528
9969eac4 3529An C<our> declaration may also have a list of attributes associated
307ea6df
JH
3530with it.
3531
1d2de774
JH
3532The exact semantics and interface of TYPE and ATTRS are still
3533evolving. TYPE is currently bound to the use of C<fields> pragma,
307ea6df
JH
3534and attributes are handled using the C<attributes> pragma, or starting
3535from Perl 5.8.0 also via the C<Attribute::Handlers> module. See
3536L<perlsub/"Private Variables via my()"> for details, and L<fields>,
3537L<attributes>, and L<Attribute::Handlers>.
3538
a0d0e21e 3539=item pack TEMPLATE,LIST
d74e8afc 3540X<pack>
a0d0e21e 3541
2b6c5635
GS
3542Takes a LIST of values and converts it into a string using the rules
3543given by the TEMPLATE. The resulting string is the concatenation of
3544the converted values. Typically, each converted value looks
3545like its machine-level representation. For example, on 32-bit machines
cf264981 3546an integer may be represented by a sequence of 4 bytes that will be
f337b084 3547converted to a sequence of 4 characters.
2b6c5635 3548
18529408
IZ
3549The TEMPLATE is a sequence of characters that give the order and type
3550of values, as follows:
a0d0e21e 3551
5a929a98 3552 a A string with arbitrary binary data, will be null padded.
121910a4 3553 A A text (ASCII) string, will be space padded.
299600f4 3554 Z A null terminated (ASCIZ) string, will be null padded.
5a929a98 3555
2b6c5635
GS
3556 b A bit string (ascending bit order inside each byte, like vec()).
3557 B A bit string (descending bit order inside each byte).
a0d0e21e
LW
3558 h A hex string (low nybble first).
3559 H A hex string (high nybble first).
3560
1109a392 3561 c A signed char (8-bit) value.
1651fc44 3562 C An unsigned char (octet) value.
f337b084 3563 W An unsigned char value (can be greater than 255).
96e4d5b1 3564
1109a392 3565 s A signed short (16-bit) value.
a0d0e21e 3566 S An unsigned short value.
96e4d5b1 3567
1109a392 3568 l A signed long (32-bit) value.
a0d0e21e 3569 L An unsigned long value.
a0d0e21e 3570
dae0da7a
JH
3571 q A signed quad (64-bit) value.
3572 Q An unsigned quad value.
851646ae
JH
3573 (Quads are available only if your system supports 64-bit
3574 integer values _and_ if Perl has been compiled to support those.
dae0da7a
JH
3575 Causes a fatal error otherwise.)
3576
1109a392
MHM
3577 i A signed integer value.
3578 I A unsigned integer value.
3579 (This 'integer' is _at_least_ 32 bits wide. Its exact
3580 size depends on what a local C compiler calls 'int'.)
2b191d53 3581
1109a392
MHM
3582 n An unsigned short (16-bit) in "network" (big-endian) order.
3583 N An unsigned long (32-bit) in "network" (big-endian) order.
3584 v An unsigned short (16-bit) in "VAX" (little-endian) order.
3585 V An unsigned long (32-bit) in "VAX" (little-endian) order.
3586
3587 j A Perl internal signed integer value (IV).
3588 J A Perl internal unsigned integer value (UV).
92d41999 3589
a0d0e21e
LW
3590 f A single-precision float in the native format.
3591 d A double-precision float in the native format.
3592
1109a392 3593 F A Perl internal floating point value (NV) in the native format
92d41999
JH
3594 D A long double-precision float in the native format.
3595 (Long doubles are available only if your system supports long
3596 double values _and_ if Perl has been compiled to support those.
3597 Causes a fatal error otherwise.)
3598
a0d0e21e
LW
3599 p A pointer to a null-terminated string.
3600 P A pointer to a structure (fixed-length string).
3601
3602 u A uuencoded string.
1651fc44
ML
3603 U A Unicode character number. Encodes to a character in character mode
3604 and UTF-8 (or UTF-EBCDIC in EBCDIC platforms) in byte mode.
a0d0e21e 3605
24436e9a
RGS
3606 w A BER compressed integer (not an ASN.1 BER, see perlpacktut for
3607 details). Its bytes represent an unsigned integer in base 128,
3608 most significant digit first, with as few digits as possible. Bit
3609 eight (the high bit) is set on each byte except the last.
def98dd4 3610
a0d0e21e
LW
3611 x A null byte.
3612 X Back up a byte.
28be1210
TH
3613 @ Null fill or truncate to absolute position, counted from the
3614 start of the innermost ()-group.
3615 . Null fill or truncate to absolute position specified by value.
206947d2 3616 ( Start of a ()-group.
a0d0e21e 3617
cf264981
SP
3618One or more of the modifiers below may optionally follow some letters in the
3619TEMPLATE (the second column lists the letters for which the modifier is
3620valid):
1109a392
MHM
3621
3622 ! sSlLiI Forces native (short, long, int) sizes instead
3623 of fixed (16-/32-bit) sizes.
3624
3625 xX Make x and X act as alignment commands.
3626
3627 nNvV Treat integers as signed instead of unsigned.
3628
28be1210
TH
3629 @. Specify position as byte offset in the internal
3630 representation of the packed string. Efficient but
3631 dangerous.
3632
1109a392
MHM
3633 > sSiIlLqQ Force big-endian byte-order on the type.
3634 jJfFdDpP (The "big end" touches the construct.)
3635
3636 < sSiIlLqQ Force little-endian byte-order on the type.
3637 jJfFdDpP (The "little end" touches the construct.)
3638
66c611c5
MHM
3639The C<E<gt>> and C<E<lt>> modifiers can also be used on C<()>-groups,
3640in which case they force a certain byte-order on all components of
3641that group, including subgroups.
3642
5a929a98
VU
3643The following rules apply:
3644
3645=over 8
3646
3647=item *
3648
5a964f20 3649Each letter may optionally be followed by a number giving a repeat
951ba7fe 3650count. With all types except C<a>, C<A>, C<Z>, C<b>, C<B>, C<h>,
28be1210
TH
3651C<H>, C<@>, C<.>, C<x>, C<X> and C<P> the pack function will gobble up
3652that many values from the LIST. A C<*> for the repeat count means to
3653use however many items are left, except for C<@>, C<x>, C<X>, where it
3654is equivalent to C<0>, for <.> where it means relative to string start
3655and C<u>, where it is equivalent to 1 (or 45, which is the same).
3656A numeric repeat count may optionally be enclosed in brackets, as in
3657C<pack 'C[80]', @arr>.
206947d2
IZ
3658
3659One can replace the numeric repeat count by a template enclosed in brackets;
3660then the packed length of this template in bytes is used as a count.
62f95557
IZ
3661For example, C<x[L]> skips a long (it skips the number of bytes in a long);
3662the template C<$t X[$t] $t> unpack()s twice what $t unpacks.
3663If the template in brackets contains alignment commands (such as C<x![d]>),
3664its packed length is calculated as if the start of the template has the maximal
3665possible alignment.
2b6c5635 3666
951ba7fe 3667When used with C<Z>, C<*> results in the addition of a trailing null
2b6c5635
GS
3668byte (so the packed result will be one longer than the byte C<length>
3669of the item).
3670
28be1210
TH
3671When used with C<@>, the repeat count represents an offset from the start
3672of the innermost () group.
3673
3674When used with C<.>, the repeat count is used to determine the starting
3675position from where the value offset is calculated. If the repeat count
3676is 0, it's relative to the current position. If the repeat count is C<*>,
3677the offset is relative to the start of the packed string. And if its an
3678integer C<n> the offset is relative to the start of the n-th innermost
3679() group (or the start of the string if C<n> is bigger then the group
3680level).
3681
951ba7fe 3682The repeat count for C<u> is interpreted as the maximal number of bytes
f337b084
TH
3683to encode per line of output, with 0, 1 and 2 replaced by 45. The repeat
3684count should not be more than 65.
5a929a98
VU
3685
3686=item *
3687
951ba7fe 3688The C<a>, C<A>, and C<Z> types gobble just one value, but pack it as a
5a929a98 3689string of length count, padding with nulls or spaces as necessary. When
18bdf90a 3690unpacking, C<A> strips trailing whitespace and nulls, C<Z> strips everything
f337b084 3691after the first null, and C<a> returns data verbatim.
2b6c5635
GS
3692
3693If the value-to-pack is too long, it is truncated. If too long and an
951ba7fe 3694explicit count is provided, C<Z> packs only C<$count-1> bytes, followed
f337b084
TH
3695by a null byte. Thus C<Z> always packs a trailing null (except when the
3696count is 0).
5a929a98
VU
3697
3698=item *
3699
951ba7fe 3700Likewise, the C<b> and C<B> fields pack a string that many bits long.
f337b084 3701Each character of the input field of pack() generates 1 bit of the result.
c73032f5 3702Each result bit is based on the least-significant bit of the corresponding
f337b084
TH
3703input character, i.e., on C<ord($char)%2>. In particular, characters C<"0">
3704and C<"1"> generate bits 0 and 1, as do characters C<"\0"> and C<"\1">.
c73032f5
IZ
3705
3706Starting from the beginning of the input string of pack(), each 8-tuple
f337b084
TH
3707of characters is converted to 1 character of output. With format C<b>
3708the first character of the 8-tuple determines the least-significant bit of a
3709character, and with format C<B> it determines the most-significant bit of
3710a character.
c73032f5
IZ
3711
3712If the length of the input string is not exactly divisible by 8, the
f337b084 3713remainder is packed as if the input string were padded by null characters
c73032f5
IZ
3714at the end. Similarly, during unpack()ing the "extra" bits are ignored.
3715
f337b084
TH
3716If the input string of pack() is longer than needed, extra characters are
3717ignored. A C<*> for the repeat count of pack() means to use all the
3718characters of the input field. On unpack()ing the bits are converted to a
3719string of C<"0">s and C<"1">s.
5a929a98
VU
3720
3721=item *
3722
951ba7fe 3723The C<h> and C<H> fields pack a string that many nybbles (4-bit groups,
851646ae 3724representable as hexadecimal digits, 0-9a-f) long.
5a929a98 3725
f337b084
TH
3726Each character of the input field of pack() generates 4 bits of the result.
3727For non-alphabetical characters the result is based on the 4 least-significant
3728bits of the input character, i.e., on C<ord($char)%16>. In particular,
3729characters C<"0"> and C<"1"> generate nybbles 0 and 1, as do bytes
3730C<"\0"> and C<"\1">. For characters C<"a".."f"> and C<"A".."F"> the result
c73032f5 3731is compatible with the usual hexadecimal digits, so that C<"a"> and
f337b084 3732C<"A"> both generate the nybble C<0xa==10>. The result for characters
c73032f5
IZ
3733C<"g".."z"> and C<"G".."Z"> is not well-defined.
3734
3735Starting from the beginning of the input string of pack(), each pair
f337b084
TH
3736of characters is converted to 1 character of output. With format C<h> the
3737first character of the pair determines the least-significant nybble of the
3738output character, and with format C<H> it determines the most-significant
c73032f5
IZ
3739nybble.
3740
3741If the length of the input string is not even, it behaves as if padded
f337b084 3742by a null character at the end. Similarly, during unpack()ing the "extra"
c73032f5
IZ
3743nybbles are ignored.
3744
f337b084
TH
3745If the input string of pack() is longer than needed, extra characters are
3746ignored.
3747A C<*> for the repeat count of pack() means to use all the characters of
3748the input field. On unpack()ing the nybbles are converted to a string
c73032f5
IZ
3749of hexadecimal digits.
3750
5a929a98
VU
3751=item *
3752
951ba7fe 3753The C<p> type packs a pointer to a null-terminated string. You are
5a929a98
VU
3754responsible for ensuring the string is not a temporary value (which can
3755potentially get deallocated before you get around to using the packed result).
951ba7fe
GS
3756The C<P> type packs a pointer to a structure of the size indicated by the
3757length. A NULL pointer is created if the corresponding value for C<p> or
3758C<P> is C<undef>, similarly for unpack().
5a929a98 3759
1109a392
MHM
3760If your system has a strange pointer size (i.e. a pointer is neither as
3761big as an int nor as big as a long), it may not be possible to pack or
3762unpack pointers in big- or little-endian byte order. Attempting to do
3763so will result in a fatal error.
3764
5a929a98
VU
3765=item *
3766
246f24af
TH
3767The C</> template character allows packing and unpacking of a sequence of
3768items where the packed structure contains a packed item count followed by
3769the packed items themselves.
43192e07 3770
54f961c9
PD
3771For C<pack> you write I<length-item>C</>I<sequence-item> and the
3772I<length-item> describes how the length value is packed. The ones likely
3773to be of most use are integer-packing ones like C<n> (for Java strings),
3774C<w> (for ASN.1 or SNMP) and C<N> (for Sun XDR).
43192e07 3775
246f24af
TH
3776For C<pack>, the I<sequence-item> may have a repeat count, in which case
3777the minimum of that and the number of available items is used as argument
3778for the I<length-item>. If it has no repeat count or uses a '*', the number
54f961c9
PD
3779of available items is used.
3780
3781For C<unpack> an internal stack of integer arguments unpacked so far is
3782used. You write C</>I<sequence-item> and the repeat count is obtained by
3783popping off the last element from the stack. The I<sequence-item> must not
3784have a repeat count.
246f24af
TH
3785
3786If the I<sequence-item> refers to a string type (C<"A">, C<"a"> or C<"Z">),
3787the I<length-item> is a string length, not a number of strings. If there is
3788an explicit repeat count for pack, the packed string will be adjusted to that
3789given length.
3790
54f961c9
PD
3791 unpack 'W/a', "\04Gurusamy"; gives ('Guru')
3792 unpack 'a3/A A*', '007 Bond J '; gives (' Bond', 'J')
3793 unpack 'a3 x2 /A A*', '007: Bond, J.'; gives ('Bond, J', '.')
3794 pack 'n/a* w/a','hello,','world'; gives "\000\006hello,\005world"
3795 pack 'a/W2', ord('a') .. ord('z'); gives '2ab'
43192e07
IP
3796
3797The I<length-item> is not returned explicitly from C<unpack>.
3798
951ba7fe
GS
3799Adding a count to the I<length-item> letter is unlikely to do anything
3800useful, unless that letter is C<A>, C<a> or C<Z>. Packing with a
3801I<length-item> of C<a> or C<Z> may introduce C<"\000"> characters,
43192e07
IP
3802which Perl does not regard as legal in numeric strings.
3803
3804=item *
3805
951ba7fe 3806The integer types C<s>, C<S>, C<l>, and C<L> may be
1109a392 3807followed by a C<!> modifier to signify native shorts or
951ba7fe 3808longs--as you can see from above for example a bare C<l> does mean
851646ae
JH
3809exactly 32 bits, the native C<long> (as seen by the local C compiler)
3810may be larger. This is an issue mainly in 64-bit platforms. You can
951ba7fe 3811see whether using C<!> makes any difference by
726ea183 3812
4d0c1c44
GS
3813 print length(pack("s")), " ", length(pack("s!")), "\n";
3814 print length(pack("l")), " ", length(pack("l!")), "\n";
ef54e1a4 3815
951ba7fe
GS
3816C<i!> and C<I!> also work but only because of completeness;
3817they are identical to C<i> and C<I>.
ef54e1a4 3818
19799a22
GS
3819The actual sizes (in bytes) of native shorts, ints, longs, and long
3820longs on the platform where Perl was built are also available via
3821L<Config>:
3822
3823 use Config;
3824 print $Config{shortsize}, "\n";
3825 print $Config{intsize}, "\n";
3826 print $Config{longsize}, "\n";
3827 print $Config{longlongsize}, "\n";
ef54e1a4 3828
49704364 3829(The C<$Config{longlongsize}> will be undefined if your system does
b76cc8ba 3830not support long longs.)
851646ae 3831
ef54e1a4
JH
3832=item *
3833
92d41999 3834The integer formats C<s>, C<S>, C<i>, C<I>, C<l>, C<L>, C<j>, and C<J>
ef54e1a4
JH
3835are inherently non-portable between processors and operating systems
3836because they obey the native byteorder and endianness. For example a
82e239e7 38374-byte integer 0x12345678 (305419896 decimal) would be ordered natively
ef54e1a4 3838(arranged in and handled by the CPU registers) into bytes as
61eff3bc 3839
b35e152f
JJ
3840 0x12 0x34 0x56 0x78 # big-endian
3841 0x78 0x56 0x34 0x12 # little-endian
61eff3bc 3842
b84d4f81
JH
3843Basically, the Intel and VAX CPUs are little-endian, while everybody
3844else, for example Motorola m68k/88k, PPC, Sparc, HP PA, Power, and
3845Cray are big-endian. Alpha and MIPS can be either: Digital/Compaq
82e239e7
JH
3846used/uses them in little-endian mode; SGI/Cray uses them in big-endian
3847mode.
719a3cf5 3848
19799a22 3849The names `big-endian' and `little-endian' are comic references to
ef54e1a4
JH
3850the classic "Gulliver's Travels" (via the paper "On Holy Wars and a
3851Plea for Peace" by Danny Cohen, USC/ISI IEN 137, April 1, 1980) and
19799a22 3852the egg-eating habits of the Lilliputians.
61eff3bc 3853
140cb37e 3854Some systems may have even weirder byte orders such as
61eff3bc 3855
ef54e1a4
JH
3856 0x56 0x78 0x12 0x34
3857 0x34 0x12 0x78 0x56
61eff3bc 3858
ef54e1a4
JH
3859You can see your system's preference with
3860
3861 print join(" ", map { sprintf "%#02x", $_ }
f337b084 3862 unpack("W*",pack("L",0x12345678))), "\n";
ef54e1a4 3863
d99ad34e 3864The byteorder on the platform where Perl was built is also available
726ea183 3865via L<Config>:
ef54e1a4
JH
3866
3867 use Config;
3868 print $Config{byteorder}, "\n";
3869
d99ad34e
JH
3870Byteorders C<'1234'> and C<'12345678'> are little-endian, C<'4321'>
3871and C<'87654321'> are big-endian.
719a3cf5 3872
1109a392
MHM
3873If you want portable packed integers you can either use the formats
3874C<n>, C<N>, C<v>, and C<V>, or you can use the C<E<gt>> and C<E<lt>>
7a4d2905 3875modifiers. These modifiers are only available as of perl 5.9.2.
851646ae 3876See also L<perlport>.
ef54e1a4
JH
3877
3878=item *
3879
66c611c5
MHM
3880All integer and floating point formats as well as C<p> and C<P> and
3881C<()>-groups may be followed by the C<E<gt>> or C<E<lt>> modifiers
3882to force big- or little- endian byte-order, respectively.
3883This is especially useful, since C<n>, C<N>, C<v> and C<V> don't cover
3884signed integers, 64-bit integers and floating point values. However,
3885there are some things to keep in mind.
1109a392
MHM
3886
3887Exchanging signed integers between different platforms only works
3888if all platforms store them in the same format. Most platforms store
3889signed integers in two's complement, so usually this is not an issue.
3890
3891The C<E<gt>> or C<E<lt>> modifiers can only be used on floating point
3892formats on big- or little-endian machines. Otherwise, attempting to
3893do so will result in a fatal error.
3894
3895Forcing big- or little-endian byte-order on floating point values for
3896data exchange can only work if all platforms are using the same
3897binary representation (e.g. IEEE floating point format). Even if all
3898platforms are using IEEE, there may be subtle differences. Being able
3899to use C<E<gt>> or C<E<lt>> on floating point values can be very useful,
3900but also very dangerous if you don't know exactly what you're doing.
2e98ff8b 3901It is definitely not a general way to portably store floating point
1109a392
MHM
3902values.
3903
66c611c5
MHM
3904When using C<E<gt>> or C<E<lt>> on an C<()>-group, this will affect
3905all types inside the group that accept the byte-order modifiers,
3906including all subgroups. It will silently be ignored for all other
3907types. You are not allowed to override the byte-order within a group
3908that already has a byte-order modifier suffix.
3909
1109a392
MHM
3910=item *
3911
5a929a98
VU
3912Real numbers (floats and doubles) are in the native machine format only;
3913due to the multiplicity of floating formats around, and the lack of a
3914standard "network" representation, no facility for interchange has been
3915made. This means that packed floating point data written on one machine
3916may not be readable on another - even if both use IEEE floating point
3917arithmetic (as the endian-ness of the memory representation is not part
851646ae 3918of the IEEE spec). See also L<perlport>.
5a929a98 3919
1109a392
MHM
3920If you know exactly what you're doing, you can use the C<E<gt>> or C<E<lt>>
3921modifiers to force big- or little-endian byte-order on floating point values.
3922
3923Note that Perl uses doubles (or long doubles, if configured) internally for
3924all numeric calculation, and converting from double into float and thence back
3925to double again will lose precision (i.e., C<unpack("f", pack("f", $foo)>)
3926will not in general equal $foo).
5a929a98 3927
851646ae
JH
3928=item *
3929
f337b084
TH
3930Pack and unpack can operate in two modes, character mode (C<C0> mode) where
3931the packed string is processed per character and UTF-8 mode (C<U0> mode)
3932where the packed string is processed in its UTF-8-encoded Unicode form on
3933a byte by byte basis. Character mode is the default unless the format string
3934starts with an C<U>. You can switch mode at any moment with an explicit
3935C<C0> or C<U0> in the format. A mode is in effect until the next mode switch
3936or until the end of the ()-group in which it was entered.
036b4402
GS
3937
3938=item *
3939
851646ae 3940You must yourself do any alignment or padding by inserting for example
9ccd05c0 3941enough C<'x'>es while packing. There is no way to pack() and unpack()
f337b084 3942could know where the characters are going to or coming from. Therefore
9ccd05c0 3943C<pack> (and C<unpack>) handle their output and input as flat
f337b084 3944sequences of characters.
851646ae 3945
17f4a12d
IZ
3946=item *
3947
18529408 3948A ()-group is a sub-TEMPLATE enclosed in parentheses. A group may
49704364
WL
3949take a repeat count, both as postfix, and for unpack() also via the C</>
3950template character. Within each repetition of a group, positioning with
3951C<@> starts again at 0. Therefore, the result of
3952
3953 pack( '@1A((@2A)@3A)', 'a', 'b', 'c' )
3954
3955is the string "\0a\0\0bc".
3956
18529408
IZ
3957=item *
3958
62f95557
IZ
3959C<x> and C<X> accept C<!> modifier. In this case they act as
3960alignment commands: they jump forward/back to the closest position
f337b084 3961aligned at a multiple of C<count> characters. For example, to pack() or
62f95557 3962unpack() C's C<struct {char c; double d; char cc[2]}> one may need to
f337b084 3963use the template C<W x![d] d W[2]>; this assumes that doubles must be
62f95557 3964aligned on the double's size.
666f95b9 3965
62f95557
IZ
3966For alignment commands C<count> of 0 is equivalent to C<count> of 1;
3967both result in no-ops.
666f95b9 3968
62f95557
IZ
3969=item *
3970
068bd2e7
MHM
3971C<n>, C<N>, C<v> and C<V> accept the C<!> modifier. In this case they
3972will represent signed 16-/32-bit integers in big-/little-endian order.
3973This is only portable if all platforms sharing the packed data use the
3974same binary representation for signed integers (e.g. all platforms are
3975using two's complement representation).
3976
3977=item *
3978
17f4a12d 3979A comment in a TEMPLATE starts with C<#> and goes to the end of line.
49704364 3980White space may be used to separate pack codes from each other, but
1109a392 3981modifiers and a repeat count must follow immediately.
17f4a12d 3982
2b6c5635
GS
3983=item *
3984
3985If TEMPLATE requires more arguments to pack() than actually given, pack()
cf264981 3986assumes additional C<""> arguments. If TEMPLATE requires fewer arguments
2b6c5635
GS
3987to pack() than actually given, extra arguments are ignored.
3988
5a929a98 3989=back
a0d0e21e
LW
3990
3991Examples:
3992
f337b084 3993 $foo = pack("WWWW",65,66,67,68);
a0d0e21e 3994 # foo eq "ABCD"
f337b084 3995 $foo = pack("W4",65,66,67,68);
a0d0e21e 3996 # same thing
f337b084
TH
3997 $foo = pack("W4",0x24b6,0x24b7,0x24b8,0x24b9);
3998 # same thing with Unicode circled letters.
a0ed51b3 3999 $foo = pack("U4",0x24b6,0x24b7,0x24b8,0x24b9);
f337b084
TH
4000 # same thing with Unicode circled letters. You don't get the UTF-8
4001 # bytes because the U at the start of the format caused a switch to
4002 # U0-mode, so the UTF-8 bytes get joined into characters
4003 $foo = pack("C0U4",0x24b6,0x24b7,0x24b8,0x24b9);
4004 # foo eq "\xe2\x92\xb6\xe2\x92\xb7\xe2\x92\xb8\xe2\x92\xb9"
4005 # This is the UTF-8 encoding of the string in the previous example
a0d0e21e
LW
4006
4007 $foo = pack("ccxxcc",65,66,67,68);
4008 # foo eq "AB\0\0CD"
4009
f337b084 4010 # note: the above examples featuring "W" and "c" are true
9ccd05c0
JH
4011 # only on ASCII and ASCII-derived systems such as ISO Latin 1
4012 # and UTF-8. In EBCDIC the first example would be
f337b084 4013 # $foo = pack("WWWW",193,194,195,196);
9ccd05c0 4014
a0d0e21e
LW
4015 $foo = pack("s2",1,2);
4016 # "\1\0\2\0" on little-endian
4017 # "\0\1\0\2" on big-endian
4018
4019 $foo = pack("a4","abcd","x","y","z");
4020 # "abcd"
4021
4022 $foo = pack("aaaa","abcd","x","y","z");
4023 # "axyz"
4024
4025 $foo = pack("a14","abcdefg");
4026 # "abcdefg\0\0\0\0\0\0\0"
4027
4028 $foo = pack("i9pl", gmtime);
4029 # a real struct tm (on my system anyway)
4030
5a929a98
VU
4031 $utmp_template = "Z8 Z8 Z16 L";
4032 $utmp = pack($utmp_template, @utmp1);
4033 # a struct utmp (BSDish)
4034
4035 @utmp2 = unpack($utmp_template, $utmp);
4036 # "@utmp1" eq "@utmp2"
4037
a0d0e21e
LW
4038 sub bintodec {
4039 unpack("N", pack("B32", substr("0" x 32 . shift, -32)));
4040 }
4041
851646ae
JH
4042 $foo = pack('sx2l', 12, 34);
4043 # short 12, two zero bytes padding, long 34
4044 $bar = pack('s@4l', 12, 34);
4045 # short 12, zero fill to position 4, long 34
4046 # $foo eq $bar
28be1210
TH
4047 $baz = pack('s.l', 12, 4, 34);
4048 # short 12, zero fill to position 4, long 34
851646ae 4049
1109a392
MHM
4050 $foo = pack('nN', 42, 4711);
4051 # pack big-endian 16- and 32-bit unsigned integers
4052 $foo = pack('S>L>', 42, 4711);
4053 # exactly the same
4054 $foo = pack('s<l<', -42, 4711);
4055 # pack little-endian 16- and 32-bit signed integers
66c611c5
MHM
4056 $foo = pack('(sl)<', -42, 4711);
4057 # exactly the same
1109a392 4058
5a929a98 4059The same template may generally also be used in unpack().
a0d0e21e 4060
cb1a09d0 4061=item package NAMESPACE
d74e8afc 4062X<package> X<module> X<namespace>
cb1a09d0 4063
b76cc8ba 4064=item package
d6217f1e 4065
cb1a09d0 4066Declares the compilation unit as being in the given namespace. The scope
2b5ab1e7 4067of the package declaration is from the declaration itself through the end
19799a22 4068of the enclosing block, file, or eval (the same as the C<my> operator).
2b5ab1e7
TC
4069All further unqualified dynamic identifiers will be in this namespace.
4070A package statement affects only dynamic variables--including those
19799a22
GS
4071you've used C<local> on--but I<not> lexical variables, which are created
4072with C<my>. Typically it would be the first declaration in a file to
2b5ab1e7
TC
4073be included by the C<require> or C<use> operator. You can switch into a
4074package in more than one place; it merely influences which symbol table
4075is used by the compiler for the rest of that block. You can refer to
4076variables and filehandles in other packages by prefixing the identifier
4077with the package name and a double colon: C<$Package::Variable>.
4078If the package name is null, the C<main> package as assumed. That is,
4079C<$::sail> is equivalent to C<$main::sail> (as well as to C<$main'sail>,
4080still seen in older code).
cb1a09d0
AD
4081
4082See L<perlmod/"Packages"> for more information about packages, modules,
4083and classes. See L<perlsub> for other scoping issues.
4084
a0d0e21e 4085=item pipe READHANDLE,WRITEHANDLE
d74e8afc 4086X<pipe>
a0d0e21e
LW
4087
4088Opens a pair of connected pipes like the corresponding system call.
4089Note that if you set up a loop of piped processes, deadlock can occur
4090unless you are very careful. In addition, note that Perl's pipes use
9124316e 4091IO buffering, so you may need to set C<$|> to flush your WRITEHANDLE
a0d0e21e
LW
4092after each command, depending on the application.
4093
7e1af8bc 4094See L<IPC::Open2>, L<IPC::Open3>, and L<perlipc/"Bidirectional Communication">
4633a7c4
LW
4095for examples of such things.
4096
4771b018
GS
4097On systems that support a close-on-exec flag on files, the flag will be set
4098for the newly opened file descriptors as determined by the value of $^F.
4099See L<perlvar/$^F>.
4100
a0d0e21e 4101=item pop ARRAY
d74e8afc 4102X<pop> X<stack>
a0d0e21e 4103
54310121 4104=item pop
28757baa 4105
a0d0e21e 4106Pops and returns the last value of the array, shortening the array by
cd7f9af7 4107one element.
a0d0e21e 4108
19799a22
GS
4109If there are no elements in the array, returns the undefined value
4110(although this may happen at other times as well). If ARRAY is
4111omitted, pops the C<@ARGV> array in the main program, and the C<@_>
4112array in subroutines, just like C<shift>.
a0d0e21e
LW
4113
4114=item pos SCALAR
d74e8afc 4115X<pos> X<match, position>
a0d0e21e 4116
54310121 4117=item pos
bbce6d69 4118
4633a7c4 4119Returns the offset of where the last C<m//g> search left off for the variable
b17c04f3 4120in question (C<$_> is used when the variable is not specified). Note that
cf264981 41210 is a valid match offset. C<undef> indicates that the search position
b17c04f3
NC
4122is reset (usually due to match failure, but can also be because no match has
4123yet been performed on the scalar). C<pos> directly accesses the location used
4124by the regexp engine to store the offset, so assigning to C<pos> will change
4125that offset, and so will also influence the C<\G> zero-width assertion in
4126regular expressions. Because a failed C<m//gc> match doesn't reset the offset,
4127the return from C<pos> won't change either in this case. See L<perlre> and
44a8e56a 4128L<perlop>.
a0d0e21e
LW
4129
4130=item print FILEHANDLE LIST
d74e8afc 4131X<print>
a0d0e21e
LW
4132
4133=item print LIST
4134
4135=item print
4136
19799a22
GS
4137Prints a string or a list of strings. Returns true if successful.
4138FILEHANDLE may be a scalar variable name, in which case the variable
4139contains the name of or a reference to the filehandle, thus introducing
4140one level of indirection. (NOTE: If FILEHANDLE is a variable and
4141the next token is a term, it may be misinterpreted as an operator
2b5ab1e7 4142unless you interpose a C<+> or put parentheses around the arguments.)
19799a22
GS
4143If FILEHANDLE is omitted, prints by default to standard output (or
4144to the last selected output channel--see L</select>). If LIST is
4145also omitted, prints C<$_> to the currently selected output channel.
4146To set the default output channel to something other than STDOUT
4147use the select operation. The current value of C<$,> (if any) is
4148printed between each LIST item. The current value of C<$\> (if
4149any) is printed after the entire LIST has been printed. Because
4150print takes a LIST, anything in the LIST is evaluated in list
4151context, and any subroutine that you call will have one or more of
4152its expressions evaluated in list context. Also be careful not to
4153follow the print keyword with a left parenthesis unless you want
4154the corresponding right parenthesis to terminate the arguments to
4155the print--interpose a C<+> or put parentheses around all the
4156arguments.
a0d0e21e 4157
39c9c9cd
RGS
4158Note that if you're storing FILEHANDLEs in an array, or if you're using
4159any other expression more complex than a scalar variable to retrieve it,
4160you will have to use a block returning the filehandle value instead:
4633a7c4
LW
4161
4162 print { $files[$i] } "stuff\n";
4163 print { $OK ? STDOUT : STDERR } "stuff\n";
4164
5f05dabc 4165=item printf FILEHANDLE FORMAT, LIST
d74e8afc 4166X<printf>
a0d0e21e 4167
5f05dabc 4168=item printf FORMAT, LIST
a0d0e21e 4169
7660c0ab 4170Equivalent to C<print FILEHANDLE sprintf(FORMAT, LIST)>, except that C<$\>
a3cb178b 4171(the output record separator) is not appended. The first argument
f39758bf 4172of the list will be interpreted as the C<printf> format. See C<sprintf>
7e4353e9
RGS
4173for an explanation of the format argument. If C<use locale> is in effect,
4174and POSIX::setlocale() has been called, the character used for the decimal
4175separator in formatted floating point numbers is affected by the LC_NUMERIC
4176locale. See L<perllocale> and L<POSIX>.
a0d0e21e 4177
19799a22
GS
4178Don't fall into the trap of using a C<printf> when a simple
4179C<print> would do. The C<print> is more efficient and less
28757baa 4180error prone.
4181
da0045b7 4182=item prototype FUNCTION
d74e8afc 4183X<prototype>
da0045b7 4184
4185Returns the prototype of a function as a string (or C<undef> if the
5f05dabc 4186function has no prototype). FUNCTION is a reference to, or the name of,
4187the function whose prototype you want to retrieve.
da0045b7 4188
2b5ab1e7
TC
4189If FUNCTION is a string starting with C<CORE::>, the rest is taken as a
4190name for Perl builtin. If the builtin is not I<overridable> (such as
0a2ca743
RGS
4191C<qw//>) or if its arguments cannot be adequately expressed by a prototype
4192(such as C<system>), prototype() returns C<undef>, because the builtin
4193does not really behave like a Perl function. Otherwise, the string
4194describing the equivalent prototype is returned.
b6c543e3 4195
a0d0e21e 4196=item push ARRAY,LIST
1dc8ecb8 4197X<push> X<stack>
a0d0e21e
LW
4198
4199Treats ARRAY as a stack, and pushes the values of LIST
4200onto the end of ARRAY. The length of ARRAY increases by the length of
4201LIST. Has the same effect as
4202
4203 for $value (LIST) {
4204 $ARRAY[++$#ARRAY] = $value;
4205 }
4206
cde9c211
SP
4207but is more efficient. Returns the number of elements in the array following
4208the completed C<push>.
a0d0e21e
LW
4209
4210=item q/STRING/
4211
4212=item qq/STRING/
4213
8782bef2
GB
4214=item qr/STRING/
4215
945c54fd 4216=item qx/STRING/
a0d0e21e
LW
4217
4218=item qw/STRING/
4219
4b6a7270 4220Generalized quotes. See L<perlop/"Regexp Quote-Like Operators">.
a0d0e21e
LW
4221
4222=item quotemeta EXPR
d74e8afc 4223X<quotemeta> X<metacharacter>
a0d0e21e 4224
54310121 4225=item quotemeta
bbce6d69 4226
36bbe248 4227Returns the value of EXPR with all non-"word"
a034a98d
DD
4228characters backslashed. (That is, all characters not matching
4229C</[A-Za-z_0-9]/> will be preceded by a backslash in the
4230returned string, regardless of any locale settings.)
4231This is the internal function implementing
7660c0ab 4232the C<\Q> escape in double-quoted strings.
a0d0e21e 4233
7660c0ab 4234If EXPR is omitted, uses C<$_>.
bbce6d69 4235
a0d0e21e 4236=item rand EXPR
d74e8afc 4237X<rand> X<random>
a0d0e21e
LW
4238
4239=item rand
4240
7660c0ab 4241Returns a random fractional number greater than or equal to C<0> and less
3e3baf6d 4242than the value of EXPR. (EXPR should be positive.) If EXPR is
351f3254
NC
4243omitted, the value C<1> is used. Currently EXPR with the value C<0> is
4244also special-cased as C<1> - this has not been documented before perl 5.8.0
4245and is subject to change in future versions of perl. Automatically calls
4246C<srand> unless C<srand> has already been called. See also C<srand>.
a0d0e21e 4247
6063ba18
WM
4248Apply C<int()> to the value returned by C<rand()> if you want random
4249integers instead of random fractional numbers. For example,
4250
4251 int(rand(10))
4252
4253returns a random integer between C<0> and C<9>, inclusive.
4254
2f9daede 4255(Note: If your rand function consistently returns numbers that are too
a0d0e21e 4256large or too small, then your version of Perl was probably compiled
2f9daede 4257with the wrong number of RANDBITS.)
a0d0e21e
LW
4258
4259=item read FILEHANDLE,SCALAR,LENGTH,OFFSET
f723aae1 4260X<read> X<file, read>
a0d0e21e
LW
4261
4262=item read FILEHANDLE,SCALAR,LENGTH
4263
9124316e
JH
4264Attempts to read LENGTH I<characters> of data into variable SCALAR
4265from the specified FILEHANDLE. Returns the number of characters
b5fe5ca2 4266actually read, C<0> at end of file, or undef if there was an error (in
b49f3be6
SG
4267the latter case C<$!> is also set). SCALAR will be grown or shrunk
4268so that the last character actually read is the last character of the
4269scalar after the read.
4270
4271An OFFSET may be specified to place the read data at some place in the
4272string other than the beginning. A negative OFFSET specifies
4273placement at that many characters counting backwards from the end of
4274the string. A positive OFFSET greater than the length of SCALAR
4275results in the string being padded to the required size with C<"\0">
4276bytes before the result of the read is appended.
4277
4278The call is actually implemented in terms of either Perl's or system's
4279fread() call. To get a true read(2) system call, see C<sysread>.
9124316e
JH
4280
4281Note the I<characters>: depending on the status of the filehandle,
4282either (8-bit) bytes or characters are read. By default all
4283filehandles operate on bytes, but for example if the filehandle has
fae2c0fb 4284been opened with the C<:utf8> I/O layer (see L</open>, and the C<open>
1d714267
JH
4285pragma, L<open>), the I/O will operate on UTF-8 encoded Unicode
4286characters, not bytes. Similarly for the C<:encoding> pragma:
4287in that case pretty much any characters can be read.
a0d0e21e
LW
4288
4289=item readdir DIRHANDLE
d74e8afc 4290X<readdir>
a0d0e21e 4291
19799a22 4292Returns the next directory entry for a directory opened by C<opendir>.
5a964f20 4293If used in list context, returns all the rest of the entries in the
a0d0e21e 4294directory. If there are no more entries, returns an undefined value in
5a964f20 4295scalar context or a null list in list context.
a0d0e21e 4296
19799a22 4297If you're planning to filetest the return values out of a C<readdir>, you'd
5f05dabc 4298better prepend the directory in question. Otherwise, because we didn't
19799a22 4299C<chdir> there, it would have been testing the wrong file.
cb1a09d0 4300
b0169937
GS
4301 opendir(my $dh, $some_dir) || die "can't opendir $some_dir: $!";
4302 @dots = grep { /^\./ && -f "$some_dir/$_" } readdir($dh);
4303 closedir $dh;
cb1a09d0 4304
84902520 4305=item readline EXPR
e4b7ebf3
RGS
4306
4307=item readline
d74e8afc 4308X<readline> X<gets> X<fgets>
84902520 4309
e4b7ebf3
RGS
4310Reads from the filehandle whose typeglob is contained in EXPR (or from
4311*ARGV if EXPR is not provided). In scalar context, each call reads and
4312returns the next line, until end-of-file is reached, whereupon the
4313subsequent call returns undef. In list context, reads until end-of-file
4314is reached and returns a list of lines. Note that the notion of "line"
4315used here is however you may have defined it with C<$/> or
4316C<$INPUT_RECORD_SEPARATOR>). See L<perlvar/"$/">.
fbad3eb5 4317
2b5ab1e7 4318When C<$/> is set to C<undef>, when readline() is in scalar
449bc448
GS
4319context (i.e. file slurp mode), and when an empty file is read, it
4320returns C<''> the first time, followed by C<undef> subsequently.
fbad3eb5 4321
61eff3bc
JH
4322This is the internal function implementing the C<< <EXPR> >>
4323operator, but you can use it directly. The C<< <EXPR> >>
84902520
TB
4324operator is discussed in more detail in L<perlop/"I/O Operators">.
4325
5a964f20
TC
4326 $line = <STDIN>;
4327 $line = readline(*STDIN); # same thing
4328
00cb5da1
CW
4329If readline encounters an operating system error, C<$!> will be set with the
4330corresponding error message. It can be helpful to check C<$!> when you are
4331reading from filehandles you don't trust, such as a tty or a socket. The
4332following example uses the operator form of C<readline>, and takes the necessary
4333steps to ensure that C<readline> was successful.
4334
4335 for (;;) {
4336 undef $!;
4337 unless (defined( $line = <> )) {
4338 die $! if $!;
4339 last; # reached EOF
4340 }
4341 # ...
4342 }
4343
a0d0e21e 4344=item readlink EXPR
d74e8afc 4345X<readlink>
a0d0e21e 4346
54310121 4347=item readlink
bbce6d69 4348
a0d0e21e
LW
4349Returns the value of a symbolic link, if symbolic links are
4350implemented. If not, gives a fatal error. If there is some system
184e9718 4351error, returns the undefined value and sets C<$!> (errno). If EXPR is
7660c0ab 4352omitted, uses C<$_>.
a0d0e21e 4353
84902520 4354=item readpipe EXPR
8d7403e6
RGS
4355
4356=item readpipe
d74e8afc 4357X<readpipe>
84902520 4358
5a964f20 4359EXPR is executed as a system command.
84902520
TB
4360The collected standard output of the command is returned.
4361In scalar context, it comes back as a single (potentially
4362multi-line) string. In list context, returns a list of lines
7660c0ab 4363(however you've defined lines with C<$/> or C<$INPUT_RECORD_SEPARATOR>).
84902520
TB
4364This is the internal function implementing the C<qx/EXPR/>
4365operator, but you can use it directly. The C<qx/EXPR/>
4366operator is discussed in more detail in L<perlop/"I/O Operators">.
8d7403e6 4367If EXPR is omitted, uses C<$_>.
84902520 4368
399388f4 4369=item recv SOCKET,SCALAR,LENGTH,FLAGS
d74e8afc 4370X<recv>
a0d0e21e 4371
9124316e
JH
4372Receives a message on a socket. Attempts to receive LENGTH characters
4373of data into variable SCALAR from the specified SOCKET filehandle.
4374SCALAR will be grown or shrunk to the length actually read. Takes the
4375same flags as the system call of the same name. Returns the address
4376of the sender if SOCKET's protocol supports this; returns an empty
4377string otherwise. If there's an error, returns the undefined value.
4378This call is actually implemented in terms of recvfrom(2) system call.
4379See L<perlipc/"UDP: Message Passing"> for examples.
4380
4381Note the I<characters>: depending on the status of the socket, either
4382(8-bit) bytes or characters are received. By default all sockets
4383operate on bytes, but for example if the socket has been changed using
740d4bb2
JW
4384binmode() to operate with the C<:encoding(utf8)> I/O layer (see the
4385C<open> pragma, L<open>), the I/O will operate on UTF-8 encoded Unicode
4386characters, not bytes. Similarly for the C<:encoding> pragma: in that
4387case pretty much any characters can be read.
a0d0e21e
LW
4388
4389=item redo LABEL
d74e8afc 4390X<redo>
a0d0e21e
LW
4391
4392=item redo
4393
4394The C<redo> command restarts the loop block without evaluating the
98293880 4395conditional again. The C<continue> block, if any, is not executed. If
a0d0e21e 4396the LABEL is omitted, the command refers to the innermost enclosing
cf264981
SP
4397loop. Programs that want to lie to themselves about what was just input
4398normally use this command:
a0d0e21e
LW
4399
4400 # a simpleminded Pascal comment stripper
4401 # (warning: assumes no { or } in strings)
4633a7c4 4402 LINE: while (<STDIN>) {
a0d0e21e
LW
4403 while (s|({.*}.*){.*}|$1 |) {}
4404 s|{.*}| |;
4405 if (s|{.*| |) {
4406 $front = $_;
4407 while (<STDIN>) {
4408 if (/}/) { # end of comment?
5a964f20 4409 s|^|$front\{|;
4633a7c4 4410 redo LINE;
a0d0e21e
LW
4411 }
4412 }
4413 }
4414 print;
4415 }
4416
4968c1e4 4417C<redo> cannot be used to retry a block which returns a value such as
2b5ab1e7
TC
4418C<eval {}>, C<sub {}> or C<do {}>, and should not be used to exit
4419a grep() or map() operation.
4968c1e4 4420
6c1372ed
GS
4421Note that a block by itself is semantically identical to a loop
4422that executes once. Thus C<redo> inside such a block will effectively
4423turn it into a looping construct.
4424
98293880 4425See also L</continue> for an illustration of how C<last>, C<next>, and
1d2dff63
GS
4426C<redo> work.
4427
a0d0e21e 4428=item ref EXPR
d74e8afc 4429X<ref> X<reference>
a0d0e21e 4430
54310121 4431=item ref
bbce6d69 4432
8a2e0804
A
4433Returns a non-empty string if EXPR is a reference, the empty
4434string otherwise. If EXPR
7660c0ab 4435is not specified, C<$_> will be used. The value returned depends on the
bbce6d69 4436type of thing the reference is a reference to.
a0d0e21e
LW
4437Builtin types include:
4438
a0d0e21e
LW
4439 SCALAR
4440 ARRAY
4441 HASH
4442 CODE
19799a22 4443 REF
a0d0e21e 4444 GLOB
19799a22 4445 LVALUE
cc10766d
RGS
4446 FORMAT
4447 IO
4448 VSTRING
4449 Regexp
a0d0e21e 4450
54310121 4451If the referenced object has been blessed into a package, then that package
19799a22 4452name is returned instead. You can think of C<ref> as a C<typeof> operator.
a0d0e21e
LW
4453
4454 if (ref($r) eq "HASH") {
aa689395 4455 print "r is a reference to a hash.\n";
54310121 4456 }
2b5ab1e7 4457 unless (ref($r)) {
a0d0e21e 4458 print "r is not a reference at all.\n";
54310121 4459 }
a0d0e21e 4460
85dd5c8b
WL
4461The return value C<LVALUE> indicates a reference to an lvalue that is not
4462a variable. You get this from taking the reference of function calls like
4463C<pos()> or C<substr()>. C<VSTRING> is returned if the reference points
603c58be 4464to a L<version string|perldata/"Version Strings">.
85dd5c8b
WL
4465
4466The result C<Regexp> indicates that the argument is a regular expression
4467resulting from C<qr//>.
4468
a0d0e21e
LW
4469See also L<perlref>.
4470
4471=item rename OLDNAME,NEWNAME
d74e8afc 4472X<rename> X<move> X<mv> X<ren>
a0d0e21e 4473
19799a22
GS
4474Changes the name of a file; an existing file NEWNAME will be
4475clobbered. Returns true for success, false otherwise.
4476
2b5ab1e7
TC
4477Behavior of this function varies wildly depending on your system
4478implementation. For example, it will usually not work across file system
4479boundaries, even though the system I<mv> command sometimes compensates
4480for this. Other restrictions include whether it works on directories,
4481open files, or pre-existing files. Check L<perlport> and either the
4482rename(2) manpage or equivalent system documentation for details.
a0d0e21e 4483
dd184578
RGS
4484For a platform independent C<move> function look at the L<File::Copy>
4485module.
4486
16070b82 4487=item require VERSION
d74e8afc 4488X<require>
16070b82 4489
a0d0e21e
LW
4490=item require EXPR
4491
4492=item require
4493
3b825e41
RK
4494Demands a version of Perl specified by VERSION, or demands some semantics
4495specified by EXPR or by C<$_> if EXPR is not supplied.
44dcb63b 4496
3b825e41
RK
4497VERSION may be either a numeric argument such as 5.006, which will be
4498compared to C<$]>, or a literal of the form v5.6.1, which will be compared
4499to C<$^V> (aka $PERL_VERSION). A fatal error is produced at run time if
4500VERSION is greater than the version of the current Perl interpreter.
4501Compare with L</use>, which can do a similar check at compile time.
4502
4503Specifying VERSION as a literal of the form v5.6.1 should generally be
4504avoided, because it leads to misleading error messages under earlier
cf264981 4505versions of Perl that do not support this syntax. The equivalent numeric
3b825e41 4506version should be used instead.
44dcb63b 4507
dd629d5b
GS
4508 require v5.6.1; # run time version check
4509 require 5.6.1; # ditto
3b825e41 4510 require 5.006_001; # ditto; preferred for backwards compatibility
a0d0e21e 4511
362eead3
RGS
4512Otherwise, C<require> demands that a library file be included if it
4513hasn't already been included. The file is included via the do-FILE
73c71df6
CW
4514mechanism, which is essentially just a variety of C<eval> with the
4515caveat that lexical variables in the invoking script will be invisible
4516to the included code. Has semantics similar to the following subroutine:
a0d0e21e
LW
4517
4518 sub require {
20907158
AMS
4519 my ($filename) = @_;
4520 if (exists $INC{$filename}) {
4521 return 1 if $INC{$filename};
4522 die "Compilation failed in require";
4523 }
4524 my ($realfilename,$result);
4525 ITER: {
4526 foreach $prefix (@INC) {
4527 $realfilename = "$prefix/$filename";
4528 if (-f $realfilename) {
4529 $INC{$filename} = $realfilename;
4530 $result = do $realfilename;
4531 last ITER;
4532 }
4533 }
4534 die "Can't find $filename in \@INC";
4535 }
4536 if ($@) {
4537 $INC{$filename} = undef;
4538 die $@;
4539 } elsif (!$result) {
4540 delete $INC{$filename};
4541 die "$filename did not return true value";
4542 } else {
4543 return $result;
4544 }
a0d0e21e
LW
4545 }
4546
4547Note that the file will not be included twice under the same specified
a12755f0
SB
4548name.
4549
4550The file must return true as the last statement to indicate
a0d0e21e 4551successful execution of any initialization code, so it's customary to
19799a22
GS
4552end such a file with C<1;> unless you're sure it'll return true
4553otherwise. But it's better just to put the C<1;>, in case you add more
a0d0e21e
LW
4554statements.
4555
54310121 4556If EXPR is a bareword, the require assumes a "F<.pm>" extension and
da0045b7 4557replaces "F<::>" with "F</>" in the filename for you,
54310121 4558to make it easy to load standard modules. This form of loading of
a0d0e21e
LW
4559modules does not risk altering your namespace.
4560
ee580363
GS
4561In other words, if you try this:
4562
b76cc8ba 4563 require Foo::Bar; # a splendid bareword
ee580363 4564
b76cc8ba 4565The require function will actually look for the "F<Foo/Bar.pm>" file in the
7660c0ab 4566directories specified in the C<@INC> array.
ee580363 4567
5a964f20 4568But if you try this:
ee580363
GS
4569
4570 $class = 'Foo::Bar';
f86cebdf 4571 require $class; # $class is not a bareword
5a964f20 4572 #or
f86cebdf 4573 require "Foo::Bar"; # not a bareword because of the ""
ee580363 4574
b76cc8ba 4575The require function will look for the "F<Foo::Bar>" file in the @INC array and
19799a22 4576will complain about not finding "F<Foo::Bar>" there. In this case you can do:
ee580363
GS
4577
4578 eval "require $class";
4579
a91233bf
RGS
4580Now that you understand how C<require> looks for files in the case of a
4581bareword argument, there is a little extra functionality going on behind
4582the scenes. Before C<require> looks for a "F<.pm>" extension, it will
4583first look for a similar filename with a "F<.pmc>" extension. If this file
4584is found, it will be loaded in place of any file ending in a "F<.pm>"
4585extension.
662cc546 4586
d54b56d5
RGS
4587You can also insert hooks into the import facility, by putting directly
4588Perl code into the @INC array. There are three forms of hooks: subroutine
4589references, array references and blessed objects.
4590
4591Subroutine references are the simplest case. When the inclusion system
4592walks through @INC and encounters a subroutine, this subroutine gets
4593called with two parameters, the first being a reference to itself, and the
4594second the name of the file to be included (e.g. "F<Foo/Bar.pm>"). The
cec0e1a7 4595subroutine should return nothing, or a list of up to three values in the
1f0bdf18
NC
4596following order:
4597
4598=over
4599
4600=item 1
4601
1f0bdf18
NC
4602A filehandle, from which the file will be read.
4603
cec0e1a7 4604=item 2
1f0bdf18 4605
60d352b3
RGS
4606A reference to a subroutine. If there is no filehandle (previous item),
4607then this subroutine is expected to generate one line of source code per
4608call, writing the line into C<$_> and returning 1, then returning 0 at
4609"end of file". If there is a filehandle, then the subroutine will be
4610called to act a simple source filter, with the line as read in C<$_>.
4611Again, return 1 for each valid line, and 0 after all lines have been
4612returned.
1f0bdf18 4613
cec0e1a7 4614=item 3
1f0bdf18
NC
4615
4616Optional state for the subroutine. The state is passed in as C<$_[1]>. A
4617reference to the subroutine itself is passed in as C<$_[0]>.
4618
4619=back
4620
4621If an empty list, C<undef>, or nothing that matches the first 3 values above
4622is returned then C<require> will look at the remaining elements of @INC.
903fe02a 4623Note that this file handle must be a real file handle (strictly a typeglob,
1f0bdf18
NC
4624or reference to a typeglob, blessed or unblessed) - tied file handles will be
4625ignored and return value processing will stop there.
d54b56d5
RGS
4626
4627If the hook is an array reference, its first element must be a subroutine
4628reference. This subroutine is called as above, but the first parameter is
4629the array reference. This enables to pass indirectly some arguments to
4630the subroutine.
4631
4632In other words, you can write:
4633
4634 push @INC, \&my_sub;
4635 sub my_sub {
4636 my ($coderef, $filename) = @_; # $coderef is \&my_sub
4637 ...
4638 }
4639
4640or:
4641
4642 push @INC, [ \&my_sub, $x, $y, ... ];
4643 sub my_sub {
4644 my ($arrayref, $filename) = @_;
4645 # Retrieve $x, $y, ...
4646 my @parameters = @$arrayref[1..$#$arrayref];
4647 ...
4648 }
4649
cf264981 4650If the hook is an object, it must provide an INC method that will be
d54b56d5 4651called as above, the first parameter being the object itself. (Note that
92c6daad
NC
4652you must fully qualify the sub's name, as unqualified C<INC> is always forced
4653into package C<main>.) Here is a typical code layout:
d54b56d5
RGS
4654
4655 # In Foo.pm
4656 package Foo;
4657 sub new { ... }
4658 sub Foo::INC {
4659 my ($self, $filename) = @_;
4660 ...
4661 }
4662
4663 # In the main program
4664 push @INC, new Foo(...);
4665
9ae8cd5b
RGS
4666Note that these hooks are also permitted to set the %INC entry
4667corresponding to the files they have loaded. See L<perlvar/%INC>.
4668
ee580363 4669For a yet-more-powerful import facility, see L</use> and L<perlmod>.
a0d0e21e
LW
4670
4671=item reset EXPR
d74e8afc 4672X<reset>
a0d0e21e
LW
4673
4674=item reset
4675
4676Generally used in a C<continue> block at the end of a loop to clear
7660c0ab 4677variables and reset C<??> searches so that they work again. The
a0d0e21e
LW
4678expression is interpreted as a list of single characters (hyphens
4679allowed for ranges). All variables and arrays beginning with one of
4680those letters are reset to their pristine state. If the expression is
7660c0ab 4681omitted, one-match searches (C<?pattern?>) are reset to match again. Resets
5f05dabc 4682only variables or searches in the current package. Always returns
a0d0e21e
LW
46831. Examples:
4684
4685 reset 'X'; # reset all X variables
4686 reset 'a-z'; # reset lower case variables
2b5ab1e7 4687 reset; # just reset ?one-time? searches
a0d0e21e 4688
7660c0ab 4689Resetting C<"A-Z"> is not recommended because you'll wipe out your
2b5ab1e7
TC
4690C<@ARGV> and C<@INC> arrays and your C<%ENV> hash. Resets only package
4691variables--lexical variables are unaffected, but they clean themselves
4692up on scope exit anyway, so you'll probably want to use them instead.
4693See L</my>.
a0d0e21e 4694
54310121 4695=item return EXPR
d74e8afc 4696X<return>
54310121 4697
4698=item return
4699
b76cc8ba 4700Returns from a subroutine, C<eval>, or C<do FILE> with the value
5a964f20 4701given in EXPR. Evaluation of EXPR may be in list, scalar, or void
54310121 4702context, depending on how the return value will be used, and the context
19799a22 4703may vary from one execution to the next (see C<wantarray>). If no EXPR
2b5ab1e7
TC
4704is given, returns an empty list in list context, the undefined value in
4705scalar context, and (of course) nothing at all in a void context.
a0d0e21e 4706
d1be9408 4707(Note that in the absence of an explicit C<return>, a subroutine, eval,
2b5ab1e7
TC
4708or do FILE will automatically return the value of the last expression
4709evaluated.)
a0d0e21e
LW
4710
4711=item reverse LIST
d74e8afc 4712X<reverse> X<rev> X<invert>
a0d0e21e 4713
5a964f20
TC
4714In list context, returns a list value consisting of the elements
4715of LIST in the opposite order. In scalar context, concatenates the
2b5ab1e7 4716elements of LIST and returns a string value with all characters
a0ed51b3 4717in the opposite order.
4633a7c4 4718
2f9daede 4719 print reverse <>; # line tac, last line first
4633a7c4 4720
2f9daede 4721 undef $/; # for efficiency of <>
a0ed51b3 4722 print scalar reverse <>; # character tac, last line tsrif
2f9daede 4723
2d713cbd
RGS
4724Used without arguments in scalar context, reverse() reverses C<$_>.
4725
2f9daede
TP
4726This operator is also handy for inverting a hash, although there are some
4727caveats. If a value is duplicated in the original hash, only one of those
4728can be represented as a key in the inverted hash. Also, this has to
4729unwind one hash and build a whole new one, which may take some time
2b5ab1e7 4730on a large hash, such as from a DBM file.
2f9daede
TP
4731
4732 %by_name = reverse %by_address; # Invert the hash
a0d0e21e
LW
4733
4734=item rewinddir DIRHANDLE
d74e8afc 4735X<rewinddir>
a0d0e21e
LW
4736
4737Sets the current position to the beginning of the directory for the
19799a22 4738C<readdir> routine on DIRHANDLE.
a0d0e21e
LW
4739
4740=item rindex STR,SUBSTR,POSITION
d74e8afc 4741X<rindex>
a0d0e21e
LW
4742
4743=item rindex STR,SUBSTR
4744
ff551661 4745Works just like index() except that it returns the position of the I<last>
a0d0e21e 4746occurrence of SUBSTR in STR. If POSITION is specified, returns the
ff551661 4747last occurrence beginning at or before that position.
a0d0e21e
LW
4748
4749=item rmdir FILENAME
d74e8afc 4750X<rmdir> X<rd> X<directory, remove>
a0d0e21e 4751
54310121 4752=item rmdir
bbce6d69 4753
974da8e5
JH
4754Deletes the directory specified by FILENAME if that directory is
4755empty. If it succeeds it returns true, otherwise it returns false and
4756sets C<$!> (errno). If FILENAME is omitted, uses C<$_>.
a0d0e21e 4757
dd184578
RGS
4758To remove a directory tree recursively (C<rm -rf> on unix) look at
4759the C<rmtree> function of the L<File::Path> module.
4760
a0d0e21e
LW
4761=item s///
4762
4763The substitution operator. See L<perlop>.
4764
0d863452
RH
4765=item say FILEHANDLE LIST
4766X<say>
4767
4768=item say LIST
4769
4770=item say
4771
4772Just like C<print>, but implicitly appends a newline.
187a5aa6 4773C<say LIST> is simply an abbreviation for C<{ local $\ = "\n"; print
cfc4a7da 4774LIST }>.
f406c1e8 4775
0d863452
RH
4776This keyword is only available when the "say" feature is
4777enabled: see L<feature>.
4778
a0d0e21e 4779=item scalar EXPR
d74e8afc 4780X<scalar> X<context>
a0d0e21e 4781
5a964f20 4782Forces EXPR to be interpreted in scalar context and returns the value
54310121 4783of EXPR.
cb1a09d0
AD
4784
4785 @counts = ( scalar @a, scalar @b, scalar @c );
4786
54310121 4787There is no equivalent operator to force an expression to
2b5ab1e7 4788be interpolated in list context because in practice, this is never
cb1a09d0
AD
4789needed. If you really wanted to do so, however, you could use
4790the construction C<@{[ (some expression) ]}>, but usually a simple
4791C<(some expression)> suffices.
a0d0e21e 4792
19799a22 4793Because C<scalar> is unary operator, if you accidentally use for EXPR a
2b5ab1e7
TC
4794parenthesized list, this behaves as a scalar comma expression, evaluating
4795all but the last element in void context and returning the final element
4796evaluated in scalar context. This is seldom what you want.
62c18ce2
GS
4797
4798The following single statement:
4799
4800 print uc(scalar(&foo,$bar)),$baz;
4801
4802is the moral equivalent of these two:
4803
4804 &foo;
4805 print(uc($bar),$baz);
4806
4807See L<perlop> for more details on unary operators and the comma operator.
4808
a0d0e21e 4809=item seek FILEHANDLE,POSITION,WHENCE
d74e8afc 4810X<seek> X<fseek> X<filehandle, position>
a0d0e21e 4811
19799a22 4812Sets FILEHANDLE's position, just like the C<fseek> call of C<stdio>.
8903cb82 4813FILEHANDLE may be an expression whose value gives the name of the
9124316e
JH
4814filehandle. The values for WHENCE are C<0> to set the new position
4815I<in bytes> to POSITION, C<1> to set it to the current position plus
4816POSITION, and C<2> to set it to EOF plus POSITION (typically
4817negative). For WHENCE you may use the constants C<SEEK_SET>,
4818C<SEEK_CUR>, and C<SEEK_END> (start of the file, current position, end
4819of the file) from the Fcntl module. Returns C<1> upon success, C<0>
4820otherwise.
4821
4822Note the I<in bytes>: even if the filehandle has been set to
740d4bb2 4823operate on characters (for example by using the C<:encoding(utf8)> open
fae2c0fb 4824layer), tell() will return byte offsets, not character offsets
9124316e 4825(because implementing that would render seek() and tell() rather slow).
8903cb82 4826
19799a22
GS
4827If you want to position file for C<sysread> or C<syswrite>, don't use
4828C<seek>--buffering makes its effect on the file's system position
4829unpredictable and non-portable. Use C<sysseek> instead.
a0d0e21e 4830
2b5ab1e7
TC
4831Due to the rules and rigors of ANSI C, on some systems you have to do a
4832seek whenever you switch between reading and writing. Amongst other
4833things, this may have the effect of calling stdio's clearerr(3).
4834A WHENCE of C<1> (C<SEEK_CUR>) is useful for not moving the file position:
cb1a09d0
AD
4835
4836 seek(TEST,0,1);
4837
4838This is also useful for applications emulating C<tail -f>. Once you hit
4839EOF on your read, and then sleep for a while, you might have to stick in a
19799a22 4840seek() to reset things. The C<seek> doesn't change the current position,
8903cb82 4841but it I<does> clear the end-of-file condition on the handle, so that the
61eff3bc 4842next C<< <FILE> >> makes Perl try again to read something. We hope.
cb1a09d0 4843
9124316e
JH
4844If that doesn't work (some IO implementations are particularly
4845cantankerous), then you may need something more like this:
cb1a09d0
AD
4846
4847 for (;;) {
f86cebdf
GS
4848 for ($curpos = tell(FILE); $_ = <FILE>;
4849 $curpos = tell(FILE)) {
cb1a09d0
AD
4850 # search for some stuff and put it into files
4851 }
4852 sleep($for_a_while);
4853 seek(FILE, $curpos, 0);
4854 }
4855
a0d0e21e 4856=item seekdir DIRHANDLE,POS
d74e8afc 4857X<seekdir>
a0d0e21e 4858
19799a22 4859Sets the current position for the C<readdir> routine on DIRHANDLE. POS
cf264981
SP
4860must be a value returned by C<telldir>. C<seekdir> also has the same caveats
4861about possible directory compaction as the corresponding system library
a0d0e21e
LW
4862routine.
4863
4864=item select FILEHANDLE
d74e8afc 4865X<select> X<filehandle, default>
a0d0e21e
LW
4866
4867=item select
4868
b5dffda6
RGS
4869Returns the currently selected filehandle. If FILEHANDLE is supplied,
4870sets the new current default filehandle for output. This has two
19799a22 4871effects: first, a C<write> or a C<print> without a filehandle will
a0d0e21e
LW
4872default to this FILEHANDLE. Second, references to variables related to
4873output will refer to this output channel. For example, if you have to
4874set the top of form format for more than one output channel, you might
4875do the following:
4876
4877 select(REPORT1);
4878 $^ = 'report1_top';
4879 select(REPORT2);
4880 $^ = 'report2_top';
4881
4882FILEHANDLE may be an expression whose value gives the name of the
4883actual filehandle. Thus:
4884
4885 $oldfh = select(STDERR); $| = 1; select($oldfh);
4886
4633a7c4
LW
4887Some programmers may prefer to think of filehandles as objects with
4888methods, preferring to write the last example as:
a0d0e21e 4889
28757baa 4890 use IO::Handle;
a0d0e21e
LW
4891 STDERR->autoflush(1);
4892
4893=item select RBITS,WBITS,EBITS,TIMEOUT
d74e8afc 4894X<select>
a0d0e21e 4895
f86cebdf 4896This calls the select(2) system call with the bit masks specified, which
19799a22 4897can be constructed using C<fileno> and C<vec>, along these lines:
a0d0e21e
LW
4898
4899 $rin = $win = $ein = '';
4900 vec($rin,fileno(STDIN),1) = 1;
4901 vec($win,fileno(STDOUT),1) = 1;
4902 $ein = $rin | $win;
4903
4904If you want to select on many filehandles you might wish to write a
4905subroutine:
4906
4907 sub fhbits {
5a964f20
TC
4908 my(@fhlist) = split(' ',$_[0]);
4909 my($bits);
a0d0e21e
LW
4910 for (@fhlist) {
4911 vec($bits,fileno($_),1) = 1;
4912 }
4913 $bits;
4914 }
4633a7c4 4915 $rin = fhbits('STDIN TTY SOCK');
a0d0e21e
LW
4916
4917The usual idiom is:
4918
4919 ($nfound,$timeleft) =
4920 select($rout=$rin, $wout=$win, $eout=$ein, $timeout);
4921
54310121 4922or to block until something becomes ready just do this
a0d0e21e
LW
4923
4924 $nfound = select($rout=$rin, $wout=$win, $eout=$ein, undef);
4925
19799a22
GS
4926Most systems do not bother to return anything useful in $timeleft, so
4927calling select() in scalar context just returns $nfound.
c07a80fd 4928
5f05dabc 4929Any of the bit masks can also be undef. The timeout, if specified, is
a0d0e21e 4930in seconds, which may be fractional. Note: not all implementations are
be119125 4931capable of returning the $timeleft. If not, they always return
19799a22 4932$timeleft equal to the supplied $timeout.
a0d0e21e 4933
ff68c719 4934You can effect a sleep of 250 milliseconds this way:
a0d0e21e
LW
4935
4936 select(undef, undef, undef, 0.25);
4937
b09fc1d8 4938Note that whether C<select> gets restarted after signals (say, SIGALRM)
8b0ac1d7
MHM
4939is implementation-dependent. See also L<perlport> for notes on the
4940portability of C<select>.
40454f26 4941
4189264e
RGS
4942On error, C<select> behaves like the select(2) system call : it returns
4943-1 and sets C<$!>.
353e5636 4944
ec8ce15a
HPM
4945Note: on some Unixes, the select(2) system call may report a socket file
4946descriptor as "ready for reading", when actually no data is available,
4947thus a subsequent read blocks. It can be avoided using always the
4948O_NONBLOCK flag on the socket. See select(2) and fcntl(2) for further
4949details.
4950
19799a22 4951B<WARNING>: One should not attempt to mix buffered I/O (like C<read>
61eff3bc 4952or <FH>) with C<select>, except as permitted by POSIX, and even
19799a22 4953then only on POSIX systems. You have to use C<sysread> instead.
a0d0e21e
LW
4954
4955=item semctl ID,SEMNUM,CMD,ARG
d74e8afc 4956X<semctl>
a0d0e21e 4957
19799a22 4958Calls the System V IPC function C<semctl>. You'll probably have to say
0ade1984
JH
4959
4960 use IPC::SysV;
4961
4962first to get the correct constant definitions. If CMD is IPC_STAT or
cf264981 4963GETALL, then ARG must be a variable that will hold the returned
e4038a1f
MS
4964semid_ds structure or semaphore value array. Returns like C<ioctl>:
4965the undefined value for error, "C<0 but true>" for zero, or the actual
4966return value otherwise. The ARG must consist of a vector of native
106325ad 4967short integers, which may be created with C<pack("s!",(0)x$nsem)>.
4755096e
GS
4968See also L<perlipc/"SysV IPC">, C<IPC::SysV>, C<IPC::Semaphore>
4969documentation.
a0d0e21e
LW
4970
4971=item semget KEY,NSEMS,FLAGS
d74e8afc 4972X<semget>
a0d0e21e
LW
4973
4974Calls the System V IPC function semget. Returns the semaphore id, or
4755096e
GS
4975the undefined value if there is an error. See also
4976L<perlipc/"SysV IPC">, C<IPC::SysV>, C<IPC::SysV::Semaphore>
4977documentation.
a0d0e21e
LW
4978
4979=item semop KEY,OPSTRING
d74e8afc 4980X<semop>
a0d0e21e
LW
4981
4982Calls the System V IPC function semop to perform semaphore operations
5354997a 4983such as signalling and waiting. OPSTRING must be a packed array of
a0d0e21e 4984semop structures. Each semop structure can be generated with
cf264981
SP
4985C<pack("s!3", $semnum, $semop, $semflag)>. The length of OPSTRING
4986implies the number of semaphore operations. Returns true if
19799a22
GS
4987successful, or false if there is an error. As an example, the
4988following code waits on semaphore $semnum of semaphore id $semid:
a0d0e21e 4989
f878ba33 4990 $semop = pack("s!3", $semnum, -1, 0);
a0d0e21e
LW
4991 die "Semaphore trouble: $!\n" unless semop($semid, $semop);
4992
4755096e
GS
4993To signal the semaphore, replace C<-1> with C<1>. See also
4994L<perlipc/"SysV IPC">, C<IPC::SysV>, and C<IPC::SysV::Semaphore>
4995documentation.
a0d0e21e
LW
4996
4997=item send SOCKET,MSG,FLAGS,TO
d74e8afc 4998X<send>
a0d0e21e
LW
4999
5000=item send SOCKET,MSG,FLAGS
5001
fe854a6f 5002Sends a message on a socket. Attempts to send the scalar MSG to the
9124316e
JH
5003SOCKET filehandle. Takes the same flags as the system call of the
5004same name. On unconnected sockets you must specify a destination to
5005send TO, in which case it does a C C<sendto>. Returns the number of
5006characters sent, or the undefined value if there is an error. The C
5007system call sendmsg(2) is currently unimplemented. See
5008L<perlipc/"UDP: Message Passing"> for examples.
5009
5010Note the I<characters>: depending on the status of the socket, either
5011(8-bit) bytes or characters are sent. By default all sockets operate
5012on bytes, but for example if the socket has been changed using
740d4bb2
JW
5013binmode() to operate with the C<:encoding(utf8)> I/O layer (see
5014L</open>, or the C<open> pragma, L<open>), the I/O will operate on UTF-8
5015encoded Unicode characters, not bytes. Similarly for the C<:encoding>
5016pragma: in that case pretty much any characters can be sent.
a0d0e21e
LW
5017
5018=item setpgrp PID,PGRP
d74e8afc 5019X<setpgrp> X<group>
a0d0e21e 5020
7660c0ab 5021Sets the current process group for the specified PID, C<0> for the current
a0d0e21e 5022process. Will produce a fatal error if used on a machine that doesn't
81777298
GS
5023implement POSIX setpgid(2) or BSD setpgrp(2). If the arguments are omitted,
5024it defaults to C<0,0>. Note that the BSD 4.2 version of C<setpgrp> does not
5025accept any arguments, so only C<setpgrp(0,0)> is portable. See also
5026C<POSIX::setsid()>.
a0d0e21e
LW
5027
5028=item setpriority WHICH,WHO,PRIORITY
d74e8afc 5029X<setpriority> X<priority> X<nice> X<renice>
a0d0e21e
LW
5030
5031Sets the current priority for a process, a process group, or a user.
f86cebdf
GS
5032(See setpriority(2).) Will produce a fatal error if used on a machine
5033that doesn't implement setpriority(2).
a0d0e21e
LW
5034
5035=item setsockopt SOCKET,LEVEL,OPTNAME,OPTVAL
d74e8afc 5036X<setsockopt>
a0d0e21e
LW
5037
5038Sets the socket option requested. Returns undefined if there is an
23d0437f
GA
5039error. Use integer constants provided by the C<Socket> module for
5040LEVEL and OPNAME. Values for LEVEL can also be obtained from
5041getprotobyname. OPTVAL might either be a packed string or an integer.
5042An integer OPTVAL is shorthand for pack("i", OPTVAL).
5043
5044An example disabling the Nagle's algorithm for a socket:
5045
5046 use Socket qw(IPPROTO_TCP TCP_NODELAY);
5047 setsockopt($socket, IPPROTO_TCP, TCP_NODELAY, 1);
a0d0e21e
LW
5048
5049=item shift ARRAY
d74e8afc 5050X<shift>
a0d0e21e
LW
5051
5052=item shift
5053
5054Shifts the first value of the array off and returns it, shortening the
5055array by 1 and moving everything down. If there are no elements in the
5056array, returns the undefined value. If ARRAY is omitted, shifts the
7660c0ab 5057C<@_> array within the lexical scope of subroutines and formats, and the
faeb8393 5058C<@ARGV> array outside of a subroutine and also within the lexical scopes
3c10abe3
AG
5059established by the C<eval STRING>, C<BEGIN {}>, C<INIT {}>, C<CHECK {}>,
5060C<UNITCHECK {}> and C<END {}> constructs.
4f25aa18 5061
a1b2c429 5062See also C<unshift>, C<push>, and C<pop>. C<shift> and C<unshift> do the
19799a22 5063same thing to the left end of an array that C<pop> and C<push> do to the
977336f5 5064right end.
a0d0e21e
LW
5065
5066=item shmctl ID,CMD,ARG
d74e8afc 5067X<shmctl>
a0d0e21e 5068
0ade1984
JH
5069Calls the System V IPC function shmctl. You'll probably have to say
5070
5071 use IPC::SysV;
5072
7660c0ab 5073first to get the correct constant definitions. If CMD is C<IPC_STAT>,
cf264981 5074then ARG must be a variable that will hold the returned C<shmid_ds>
7660c0ab 5075structure. Returns like ioctl: the undefined value for error, "C<0> but
0ade1984 5076true" for zero, or the actual return value otherwise.
4755096e 5077See also L<perlipc/"SysV IPC"> and C<IPC::SysV> documentation.
a0d0e21e
LW
5078
5079=item shmget KEY,SIZE,FLAGS
d74e8afc 5080X<shmget>
a0d0e21e
LW
5081
5082Calls the System V IPC function shmget. Returns the shared memory
5083segment id, or the undefined value if there is an error.
4755096e 5084See also L<perlipc/"SysV IPC"> and C<IPC::SysV> documentation.
a0d0e21e
LW
5085
5086=item shmread ID,VAR,POS,SIZE
d74e8afc
ITB
5087X<shmread>
5088X<shmwrite>
a0d0e21e
LW
5089
5090=item shmwrite ID,STRING,POS,SIZE
5091
5092Reads or writes the System V shared memory segment ID starting at
5093position POS for size SIZE by attaching to it, copying in/out, and
5a964f20 5094detaching from it. When reading, VAR must be a variable that will
a0d0e21e
LW
5095hold the data read. When writing, if STRING is too long, only SIZE
5096bytes are used; if STRING is too short, nulls are written to fill out
19799a22 5097SIZE bytes. Return true if successful, or false if there is an error.
4755096e
GS
5098shmread() taints the variable. See also L<perlipc/"SysV IPC">,
5099C<IPC::SysV> documentation, and the C<IPC::Shareable> module from CPAN.
a0d0e21e
LW
5100
5101=item shutdown SOCKET,HOW
d74e8afc 5102X<shutdown>
a0d0e21e
LW
5103
5104Shuts down a socket connection in the manner indicated by HOW, which
5105has the same interpretation as in the system call of the same name.
5106
f86cebdf
GS
5107 shutdown(SOCKET, 0); # I/we have stopped reading data
5108 shutdown(SOCKET, 1); # I/we have stopped writing data
5109 shutdown(SOCKET, 2); # I/we have stopped using this socket
5a964f20
TC
5110
5111This is useful with sockets when you want to tell the other
5112side you're done writing but not done reading, or vice versa.
b76cc8ba 5113It's also a more insistent form of close because it also
19799a22 5114disables the file descriptor in any forked copies in other
5a964f20
TC
5115processes.
5116
f126b98b
PF
5117Returns C<1> for success. In the case of error, returns C<undef> if
5118the first argument is not a valid filehandle, or returns C<0> and sets
5119C<$!> for any other failure.
5120
a0d0e21e 5121=item sin EXPR
d74e8afc 5122X<sin> X<sine> X<asin> X<arcsine>
a0d0e21e 5123
54310121 5124=item sin
bbce6d69 5125
a0d0e21e 5126Returns the sine of EXPR (expressed in radians). If EXPR is omitted,
7660c0ab 5127returns sine of C<$_>.
a0d0e21e 5128
ca6e1c26 5129For the inverse sine operation, you may use the C<Math::Trig::asin>
28757baa 5130function, or use this relation:
5131
5132 sub asin { atan2($_[0], sqrt(1 - $_[0] * $_[0])) }
5133
a0d0e21e 5134=item sleep EXPR
d74e8afc 5135X<sleep> X<pause>
a0d0e21e
LW
5136
5137=item sleep
5138
5139Causes the script to sleep for EXPR seconds, or forever if no EXPR.
7660c0ab 5140May be interrupted if the process receives a signal such as C<SIGALRM>.
1d3434b8 5141Returns the number of seconds actually slept. You probably cannot
19799a22
GS
5142mix C<alarm> and C<sleep> calls, because C<sleep> is often implemented
5143using C<alarm>.
a0d0e21e
LW
5144
5145On some older systems, it may sleep up to a full second less than what
5146you requested, depending on how it counts seconds. Most modern systems
5a964f20
TC
5147always sleep the full amount. They may appear to sleep longer than that,
5148however, because your process might not be scheduled right away in a
5149busy multitasking system.
a0d0e21e 5150
2bc69794
BS
5151For delays of finer granularity than one second, the Time::HiRes module
5152(from CPAN, and starting from Perl 5.8 part of the standard
5153distribution) provides usleep(). You may also use Perl's four-argument
5154version of select() leaving the first three arguments undefined, or you
5155might be able to use the C<syscall> interface to access setitimer(2) if
5156your system supports it. See L<perlfaq8> for details.
cb1a09d0 5157
b6e2112e 5158See also the POSIX module's C<pause> function.
5f05dabc 5159
a0d0e21e 5160=item socket SOCKET,DOMAIN,TYPE,PROTOCOL
d74e8afc 5161X<socket>
a0d0e21e
LW
5162
5163Opens a socket of the specified kind and attaches it to filehandle
19799a22
GS
5164SOCKET. DOMAIN, TYPE, and PROTOCOL are specified the same as for
5165the system call of the same name. You should C<use Socket> first
5166to get the proper definitions imported. See the examples in
5167L<perlipc/"Sockets: Client/Server Communication">.
a0d0e21e 5168
8d2a6795
GS
5169On systems that support a close-on-exec flag on files, the flag will
5170be set for the newly opened file descriptor, as determined by the
5171value of $^F. See L<perlvar/$^F>.
5172
a0d0e21e 5173=item socketpair SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL
d74e8afc 5174X<socketpair>
a0d0e21e
LW
5175
5176Creates an unnamed pair of sockets in the specified domain, of the
5f05dabc 5177specified type. DOMAIN, TYPE, and PROTOCOL are specified the same as
a0d0e21e 5178for the system call of the same name. If unimplemented, yields a fatal
19799a22 5179error. Returns true if successful.
a0d0e21e 5180
8d2a6795
GS
5181On systems that support a close-on-exec flag on files, the flag will
5182be set for the newly opened file descriptors, as determined by the value
5183of $^F. See L<perlvar/$^F>.
5184
19799a22 5185Some systems defined C<pipe> in terms of C<socketpair>, in which a call
5a964f20
TC
5186to C<pipe(Rdr, Wtr)> is essentially:
5187
5188 use Socket;
5189 socketpair(Rdr, Wtr, AF_UNIX, SOCK_STREAM, PF_UNSPEC);
5190 shutdown(Rdr, 1); # no more writing for reader
5191 shutdown(Wtr, 0); # no more reading for writer
5192
02fc2eee
NC
5193See L<perlipc> for an example of socketpair use. Perl 5.8 and later will
5194emulate socketpair using IP sockets to localhost if your system implements
5195sockets but not socketpair.
5a964f20 5196
a0d0e21e 5197=item sort SUBNAME LIST
d74e8afc 5198X<sort> X<qsort> X<quicksort> X<mergesort>
a0d0e21e
LW
5199
5200=item sort BLOCK LIST
5201
5202=item sort LIST
5203
41d39f30 5204In list context, this sorts the LIST and returns the sorted list value.
9fdc1d08 5205In scalar context, the behaviour of C<sort()> is undefined.
41d39f30
A
5206
5207If SUBNAME or BLOCK is omitted, C<sort>s in standard string comparison
5208order. If SUBNAME is specified, it gives the name of a subroutine
5209that returns an integer less than, equal to, or greater than C<0>,
5210depending on how the elements of the list are to be ordered. (The C<<
5211<=> >> and C<cmp> operators are extremely useful in such routines.)
5212SUBNAME may be a scalar variable name (unsubscripted), in which case
5213the value provides the name of (or a reference to) the actual
5214subroutine to use. In place of a SUBNAME, you can provide a BLOCK as
5215an anonymous, in-line sort subroutine.
a0d0e21e 5216
43481408 5217If the subroutine's prototype is C<($$)>, the elements to be compared
f9a36357
GS
5218are passed by reference in C<@_>, as for a normal subroutine. This is
5219slower than unprototyped subroutines, where the elements to be
5220compared are passed into the subroutine
43481408
GS
5221as the package global variables $a and $b (see example below). Note that
5222in the latter case, it is usually counter-productive to declare $a and
5223$b as lexicals.
5224
c106e8bb
RH
5225The values to be compared are always passed by reference and should not
5226be modified.
a0d0e21e 5227
0a753a76 5228You also cannot exit out of the sort block or subroutine using any of the
19799a22 5229loop control operators described in L<perlsyn> or with C<goto>.
0a753a76 5230
a034a98d
DD
5231When C<use locale> is in effect, C<sort LIST> sorts LIST according to the
5232current collation locale. See L<perllocale>.
5233
db5021a3
MS
5234sort() returns aliases into the original list, much as a for loop's index
5235variable aliases the list elements. That is, modifying an element of a
5236list returned by sort() (for example, in a C<foreach>, C<map> or C<grep>)
5237actually modifies the element in the original list. This is usually
5238something to be avoided when writing clear code.
5239
58c7fc7c
JH
5240Perl 5.6 and earlier used a quicksort algorithm to implement sort.
5241That algorithm was not stable, and I<could> go quadratic. (A I<stable> sort
5242preserves the input order of elements that compare equal. Although
5243quicksort's run time is O(NlogN) when averaged over all arrays of
5244length N, the time can be O(N**2), I<quadratic> behavior, for some
5245inputs.) In 5.7, the quicksort implementation was replaced with
cf264981 5246a stable mergesort algorithm whose worst-case behavior is O(NlogN).
58c7fc7c
JH
5247But benchmarks indicated that for some inputs, on some platforms,
5248the original quicksort was faster. 5.8 has a sort pragma for
5249limited control of the sort. Its rather blunt control of the
cf264981 5250underlying algorithm may not persist into future Perls, but the
58c7fc7c 5251ability to characterize the input or output in implementation
6a30edae 5252independent ways quite probably will. See L<sort>.
c16425f1 5253
a0d0e21e
LW
5254Examples:
5255
5256 # sort lexically
5257 @articles = sort @files;
5258
5259 # same thing, but with explicit sort routine
5260 @articles = sort {$a cmp $b} @files;
5261
cb1a09d0 5262 # now case-insensitively
54310121 5263 @articles = sort {uc($a) cmp uc($b)} @files;
cb1a09d0 5264
a0d0e21e
LW
5265 # same thing in reversed order
5266 @articles = sort {$b cmp $a} @files;
5267
5268 # sort numerically ascending
5269 @articles = sort {$a <=> $b} @files;
5270
5271 # sort numerically descending
5272 @articles = sort {$b <=> $a} @files;
5273
19799a22
GS
5274 # this sorts the %age hash by value instead of key
5275 # using an in-line function
5276 @eldest = sort { $age{$b} <=> $age{$a} } keys %age;
5277
a0d0e21e
LW
5278 # sort using explicit subroutine name
5279 sub byage {
2f9daede 5280 $age{$a} <=> $age{$b}; # presuming numeric
a0d0e21e
LW
5281 }
5282 @sortedclass = sort byage @class;
5283
19799a22
GS
5284 sub backwards { $b cmp $a }
5285 @harry = qw(dog cat x Cain Abel);
5286 @george = qw(gone chased yz Punished Axed);
a0d0e21e
LW
5287 print sort @harry;
5288 # prints AbelCaincatdogx
5289 print sort backwards @harry;
5290 # prints xdogcatCainAbel
5291 print sort @george, 'to', @harry;
5292 # prints AbelAxedCainPunishedcatchaseddoggonetoxyz
5293
54310121 5294 # inefficiently sort by descending numeric compare using
5295 # the first integer after the first = sign, or the
cb1a09d0
AD
5296 # whole record case-insensitively otherwise
5297
5298 @new = sort {
5299 ($b =~ /=(\d+)/)[0] <=> ($a =~ /=(\d+)/)[0]
5300 ||
5301 uc($a) cmp uc($b)
5302 } @old;
5303
5304 # same thing, but much more efficiently;
5305 # we'll build auxiliary indices instead
5306 # for speed
5307 @nums = @caps = ();
54310121 5308 for (@old) {
cb1a09d0
AD
5309 push @nums, /=(\d+)/;
5310 push @caps, uc($_);
54310121 5311 }
cb1a09d0
AD
5312
5313 @new = @old[ sort {
5314 $nums[$b] <=> $nums[$a]
5315 ||
5316 $caps[$a] cmp $caps[$b]
5317 } 0..$#old
5318 ];
5319
19799a22 5320 # same thing, but without any temps
cb1a09d0 5321 @new = map { $_->[0] }
19799a22
GS
5322 sort { $b->[1] <=> $a->[1]
5323 ||
5324 $a->[2] cmp $b->[2]
5325 } map { [$_, /=(\d+)/, uc($_)] } @old;
61eff3bc 5326
43481408
GS
5327 # using a prototype allows you to use any comparison subroutine
5328 # as a sort subroutine (including other package's subroutines)
5329 package other;
5330 sub backwards ($$) { $_[1] cmp $_[0]; } # $a and $b are not set here
5331
5332 package main;
5333 @new = sort other::backwards @old;
cb1a09d0 5334
58c7fc7c
JH
5335 # guarantee stability, regardless of algorithm
5336 use sort 'stable';
5337 @new = sort { substr($a, 3, 5) cmp substr($b, 3, 5) } @old;
5338
268e9d79
JL
5339 # force use of mergesort (not portable outside Perl 5.8)
5340 use sort '_mergesort'; # note discouraging _
58c7fc7c 5341 @new = sort { substr($a, 3, 5) cmp substr($b, 3, 5) } @old;
58c7fc7c 5342
19799a22
GS
5343If you're using strict, you I<must not> declare $a
5344and $b as lexicals. They are package globals. That means
47223a36 5345if you're in the C<main> package and type
13a2d996 5346
47223a36 5347 @articles = sort {$b <=> $a} @files;
13a2d996 5348
47223a36
JH
5349then C<$a> and C<$b> are C<$main::a> and C<$main::b> (or C<$::a> and C<$::b>),
5350but if you're in the C<FooPack> package, it's the same as typing
cb1a09d0
AD
5351
5352 @articles = sort {$FooPack::b <=> $FooPack::a} @files;
5353
55497cff 5354The comparison function is required to behave. If it returns
7660c0ab
A
5355inconsistent results (sometimes saying C<$x[1]> is less than C<$x[2]> and
5356sometimes saying the opposite, for example) the results are not
5357well-defined.
55497cff 5358
03190201
JL
5359Because C<< <=> >> returns C<undef> when either operand is C<NaN>
5360(not-a-number), and because C<sort> will trigger a fatal error unless the
5361result of a comparison is defined, when sorting with a comparison function
5362like C<< $a <=> $b >>, be careful about lists that might contain a C<NaN>.
5363The following example takes advantage of the fact that C<NaN != NaN> to
5364eliminate any C<NaN>s from the input.
5365
5366 @result = sort { $a <=> $b } grep { $_ == $_ } @input;
5367
a0d0e21e 5368=item splice ARRAY,OFFSET,LENGTH,LIST
d74e8afc 5369X<splice>
a0d0e21e
LW
5370
5371=item splice ARRAY,OFFSET,LENGTH
5372
5373=item splice ARRAY,OFFSET
5374
453f9044
GS
5375=item splice ARRAY
5376
a0d0e21e 5377Removes the elements designated by OFFSET and LENGTH from an array, and
5a964f20
TC
5378replaces them with the elements of LIST, if any. In list context,
5379returns the elements removed from the array. In scalar context,
43051805 5380returns the last element removed, or C<undef> if no elements are
48cdf507 5381removed. The array grows or shrinks as necessary.
19799a22 5382If OFFSET is negative then it starts that far from the end of the array.
48cdf507 5383If LENGTH is omitted, removes everything from OFFSET onward.
d0920e03
MJD
5384If LENGTH is negative, removes the elements from OFFSET onward
5385except for -LENGTH elements at the end of the array.
8cbc2e3b
JH
5386If both OFFSET and LENGTH are omitted, removes everything. If OFFSET is
5387past the end of the array, perl issues a warning, and splices at the
5388end of the array.
453f9044 5389
3272a53d 5390The following equivalences hold (assuming C<< $[ == 0 and $#a >= $i >> )
a0d0e21e 5391
48cdf507 5392 push(@a,$x,$y) splice(@a,@a,0,$x,$y)
a0d0e21e
LW
5393 pop(@a) splice(@a,-1)
5394 shift(@a) splice(@a,0,1)
5395 unshift(@a,$x,$y) splice(@a,0,0,$x,$y)
3272a53d 5396 $a[$i] = $y splice(@a,$i,1,$y)
a0d0e21e
LW
5397
5398Example, assuming array lengths are passed before arrays:
5399
5400 sub aeq { # compare two list values
5a964f20
TC
5401 my(@a) = splice(@_,0,shift);
5402 my(@b) = splice(@_,0,shift);
a0d0e21e
LW
5403 return 0 unless @a == @b; # same len?
5404 while (@a) {
5405 return 0 if pop(@a) ne pop(@b);
5406 }
5407 return 1;
5408 }
5409 if (&aeq($len,@foo[1..$len],0+@bar,@bar)) { ... }
5410
5411=item split /PATTERN/,EXPR,LIMIT
d74e8afc 5412X<split>
a0d0e21e
LW
5413
5414=item split /PATTERN/,EXPR
5415
5416=item split /PATTERN/
5417
5418=item split
5419
b2e26e6e
DJ
5420Splits the string EXPR into a list of strings and returns that list. By
5421default, empty leading fields are preserved, and empty trailing ones are
ab7ee80f 5422deleted. (If all fields are empty, they are considered to be trailing.)
a0d0e21e 5423
46836f5c
GS
5424In scalar context, returns the number of fields found and splits into
5425the C<@_> array. Use of split in scalar context is deprecated, however,
5426because it clobbers your subroutine arguments.
a0d0e21e 5427
7660c0ab 5428If EXPR is omitted, splits the C<$_> string. If PATTERN is also omitted,
4633a7c4
LW
5429splits on whitespace (after skipping any leading whitespace). Anything
5430matching PATTERN is taken to be a delimiter separating the fields. (Note
fb73857a 5431that the delimiter may be longer than one character.)
5432
836e0ee7 5433If LIMIT is specified and positive, it represents the maximum number
e833de1e
BS
5434of fields the EXPR will be split into, though the actual number of
5435fields returned depends on the number of times PATTERN matches within
5436EXPR. If LIMIT is unspecified or zero, trailing null fields are
5437stripped (which potential users of C<pop> would do well to remember).
5438If LIMIT is negative, it is treated as if an arbitrarily large LIMIT
5439had been specified. Note that splitting an EXPR that evaluates to the
5440empty string always returns the empty list, regardless of the LIMIT
5441specified.
a0d0e21e
LW
5442
5443A pattern matching the null string (not to be confused with
748a9306 5444a null pattern C<//>, which is just one member of the set of patterns
a0d0e21e
LW
5445matching a null string) will split the value of EXPR into separate
5446characters at each point it matches that way. For example:
5447
5448 print join(':', split(/ */, 'hi there'));
5449
5450produces the output 'h:i:t:h:e:r:e'.
5451
de5763b0
RGS
5452As a special case for C<split>, using the empty pattern C<//> specifically
5453matches only the null string, and is not be confused with the regular use
5454of C<//> to mean "the last successful pattern match". So, for C<split>,
5455the following:
6de67870 5456
52ea55c9
SP
5457 print join(':', split(//, 'hi there'));
5458
de5763b0 5459produces the output 'h:i: :t:h:e:r:e'.
52ea55c9 5460
12977212
FC
5461Empty leading fields are produced when there are positive-width matches at
5462the beginning of the string; a zero-width match at the beginning of
5463the string does not produce an empty field. For example:
0156e0fd
RB
5464
5465 print join(':', split(/(?=\w)/, 'hi there!'));
5466
12977212
FC
5467produces the output 'h:i :t:h:e:r:e!'. Empty trailing fields, on the other
5468hand, are produced when there is a match at the end of the string (and
5469when LIMIT is given and is not 0), regardless of the length of the match.
5470For example:
5471
5472 print join(':', split(//, 'hi there!', -1));
5473 print join(':', split(/\W/, 'hi there!', -1));
5474
5475produce the output 'h:i: :t:h:e:r:e:!:' and 'hi:there:', respectively,
5476both with an empty trailing field.
0156e0fd 5477
5f05dabc 5478The LIMIT parameter can be used to split a line partially
a0d0e21e
LW
5479
5480 ($login, $passwd, $remainder) = split(/:/, $_, 3);
5481
b5da07fd
TB
5482When assigning to a list, if LIMIT is omitted, or zero, Perl supplies
5483a LIMIT one larger than the number of variables in the list, to avoid
a0d0e21e
LW
5484unnecessary work. For the list above LIMIT would have been 4 by
5485default. In time critical applications it behooves you not to split
5486into more fields than you really need.
5487
19799a22 5488If the PATTERN contains parentheses, additional list elements are
a0d0e21e
LW
5489created from each matching substring in the delimiter.
5490
da0045b7 5491 split(/([,-])/, "1-10,20", 3);
a0d0e21e
LW
5492
5493produces the list value
5494
5495 (1, '-', 10, ',', 20)
5496
19799a22 5497If you had the entire header of a normal Unix email message in $header,
4633a7c4
LW
5498you could split it up into fields and their values this way:
5499
5500 $header =~ s/\n\s+/ /g; # fix continuation lines
fb73857a 5501 %hdrs = (UNIX_FROM => split /^(\S*?):\s*/m, $header);
4633a7c4 5502
a0d0e21e
LW
5503The pattern C</PATTERN/> may be replaced with an expression to specify
5504patterns that vary at runtime. (To do runtime compilation only once,
748a9306
LW
5505use C</$variable/o>.)
5506
5da728e2
A
5507As a special case, specifying a PATTERN of space (S<C<' '>>) will split on
5508white space just as C<split> with no arguments does. Thus, S<C<split(' ')>> can
5509be used to emulate B<awk>'s default behavior, whereas S<C<split(/ /)>>
748a9306 5510will give you as many null initial fields as there are leading spaces.
5da728e2 5511A C<split> on C</\s+/> is like a S<C<split(' ')>> except that any leading
19799a22 5512whitespace produces a null first field. A C<split> with no arguments
5da728e2 5513really does a S<C<split(' ', $_)>> internally.
a0d0e21e 5514
cc50a203 5515A PATTERN of C</^/> is treated as if it were C</^/m>, since it isn't
1ec94568
MG
5516much use otherwise.
5517
a0d0e21e
LW
5518Example:
5519
5a964f20
TC
5520 open(PASSWD, '/etc/passwd');
5521 while (<PASSWD>) {
5b3eff12
MS
5522 chomp;
5523 ($login, $passwd, $uid, $gid,
f86cebdf 5524 $gcos, $home, $shell) = split(/:/);
5a964f20 5525 #...
a0d0e21e
LW
5526 }
5527
6de67870
JP
5528As with regular pattern matching, any capturing parentheses that are not
5529matched in a C<split()> will be set to C<undef> when returned:
5530
5531 @fields = split /(A)|B/, "1A2B3";
5532 # @fields is (1, 'A', 2, undef, 3)
a0d0e21e 5533
5f05dabc 5534=item sprintf FORMAT, LIST
d74e8afc 5535X<sprintf>
a0d0e21e 5536
6662521e
GS
5537Returns a string formatted by the usual C<printf> conventions of the C
5538library function C<sprintf>. See below for more details
5539and see L<sprintf(3)> or L<printf(3)> on your system for an explanation of
5540the general principles.
5541
5542For example:
5543
5544 # Format number with up to 8 leading zeroes
5545 $result = sprintf("%08d", $number);
5546
5547 # Round number to 3 digits after decimal point
5548 $rounded = sprintf("%.3f", $number);
74a77017 5549
19799a22
GS
5550Perl does its own C<sprintf> formatting--it emulates the C
5551function C<sprintf>, but it doesn't use it (except for floating-point
74a77017 5552numbers, and even then only the standard modifiers are allowed). As a
19799a22 5553result, any non-standard extensions in your local C<sprintf> are not
74a77017
CS
5554available from Perl.
5555
194e7b38
DC
5556Unlike C<printf>, C<sprintf> does not do what you probably mean when you
5557pass it an array as your first argument. The array is given scalar context,
5558and instead of using the 0th element of the array as the format, Perl will
5559use the count of elements in the array as the format, which is almost never
5560useful.
5561
19799a22 5562Perl's C<sprintf> permits the following universally-known conversions:
74a77017
CS
5563
5564 %% a percent sign
5565 %c a character with the given number
5566 %s a string
5567 %d a signed integer, in decimal
5568 %u an unsigned integer, in decimal
5569 %o an unsigned integer, in octal
5570 %x an unsigned integer, in hexadecimal
5571 %e a floating-point number, in scientific notation
5572 %f a floating-point number, in fixed decimal notation
5573 %g a floating-point number, in %e or %f notation
5574
1b3f7d21 5575In addition, Perl permits the following widely-supported conversions:
74a77017 5576
74a77017
CS
5577 %X like %x, but using upper-case letters
5578 %E like %e, but using an upper-case "E"
5579 %G like %g, but with an upper-case "E" (if applicable)
4f19785b 5580 %b an unsigned integer, in binary
e69758a1 5581 %B like %b, but using an upper-case "B" with the # flag
74a77017 5582 %p a pointer (outputs the Perl value's address in hexadecimal)
1b3f7d21 5583 %n special: *stores* the number of characters output so far
b76cc8ba 5584 into the next variable in the parameter list
74a77017 5585
1b3f7d21
CS
5586Finally, for backward (and we do mean "backward") compatibility, Perl
5587permits these unnecessary but widely-supported conversions:
74a77017 5588
1b3f7d21 5589 %i a synonym for %d
74a77017
CS
5590 %D a synonym for %ld
5591 %U a synonym for %lu
5592 %O a synonym for %lo
5593 %F a synonym for %f
5594
7b8dd722
HS
5595Note that the number of exponent digits in the scientific notation produced
5596by C<%e>, C<%E>, C<%g> and C<%G> for numbers with the modulus of the
b73fd64e
JH
5597exponent less than 100 is system-dependent: it may be three or less
5598(zero-padded as necessary). In other words, 1.23 times ten to the
559999th may be either "1.23e99" or "1.23e099".
d764f01a 5600
7b8dd722
HS
5601Between the C<%> and the format letter, you may specify a number of
5602additional attributes controlling the interpretation of the format.
5603In order, these are:
74a77017 5604
7b8dd722
HS
5605=over 4
5606
5607=item format parameter index
5608
5609An explicit format parameter index, such as C<2$>. By default sprintf
5610will format the next unused argument in the list, but this allows you
cf264981 5611to take the arguments out of order, e.g.:
7b8dd722
HS
5612
5613 printf '%2$d %1$d', 12, 34; # prints "34 12"
5614 printf '%3$d %d %1$d', 1, 2, 3; # prints "3 1 1"
5615
5616=item flags
5617
5618one or more of:
e6bb52fd 5619
7a81c58e
A
5620 space prefix non-negative number with a space
5621 + prefix non-negative number with a plus sign
74a77017
CS
5622 - left-justify within the field
5623 0 use zeros, not spaces, to right-justify
e6bb52fd
TS
5624 # ensure the leading "0" for any octal,
5625 prefix non-zero hexadecimal with "0x" or "0X",
5626 prefix non-zero binary with "0b" or "0B"
7b8dd722
HS
5627
5628For example:
5629
e6bb52fd
TS
5630 printf '<% d>', 12; # prints "< 12>"
5631 printf '<%+d>', 12; # prints "<+12>"
5632 printf '<%6s>', 12; # prints "< 12>"
5633 printf '<%-6s>', 12; # prints "<12 >"
5634 printf '<%06s>', 12; # prints "<000012>"
5635 printf '<%#o>', 12; # prints "<014>"
5636 printf '<%#x>', 12; # prints "<0xc>"
5637 printf '<%#X>', 12; # prints "<0XC>"
5638 printf '<%#b>', 12; # prints "<0b1100>"
5639 printf '<%#B>', 12; # prints "<0B1100>"
7b8dd722 5640
9911cee9
TS
5641When a space and a plus sign are given as the flags at once,
5642a plus sign is used to prefix a positive number.
5643
5644 printf '<%+ d>', 12; # prints "<+12>"
5645 printf '<% +d>', 12; # prints "<+12>"
5646
e6bb52fd
TS
5647When the # flag and a precision are given in the %o conversion,
5648the precision is incremented if it's necessary for the leading "0".
5649
5650 printf '<%#.5o>', 012; # prints "<00012>"
5651 printf '<%#.5o>', 012345; # prints "<012345>"
5652 printf '<%#.0o>', 0; # prints "<0>"
5653
7b8dd722
HS
5654=item vector flag
5655
920f3fa9
DM
5656This flag tells perl to interpret the supplied string as a vector of
5657integers, one for each character in the string. Perl applies the format to
5658each integer in turn, then joins the resulting strings with a separator (a
5659dot C<.> by default). This can be useful for displaying ordinal values of
5660characters in arbitrary strings:
7b8dd722 5661
920f3fa9 5662 printf "%vd", "AB\x{100}"; # prints "65.66.256"
7b8dd722
HS
5663 printf "version is v%vd\n", $^V; # Perl's version
5664
5665Put an asterisk C<*> before the C<v> to override the string to
5666use to separate the numbers:
5667
5668 printf "address is %*vX\n", ":", $addr; # IPv6 address
5669 printf "bits are %0*v8b\n", " ", $bits; # random bitstring
5670
5671You can also explicitly specify the argument number to use for
cf264981 5672the join string using e.g. C<*2$v>:
7b8dd722
HS
5673
5674 printf '%*4$vX %*4$vX %*4$vX', @addr[1..3], ":"; # 3 IPv6 addresses
5675
5676=item (minimum) width
5677
5678Arguments are usually formatted to be only as wide as required to
5679display the given value. You can override the width by putting
5680a number here, or get the width from the next argument (with C<*>)
cf264981 5681or from a specified argument (with e.g. C<*2$>):
7b8dd722
HS
5682
5683 printf '<%s>', "a"; # prints "<a>"
5684 printf '<%6s>', "a"; # prints "< a>"
5685 printf '<%*s>', 6, "a"; # prints "< a>"
5686 printf '<%*2$s>', "a", 6; # prints "< a>"
5687 printf '<%2s>', "long"; # prints "<long>" (does not truncate)
5688
19799a22
GS
5689If a field width obtained through C<*> is negative, it has the same
5690effect as the C<-> flag: left-justification.
74a77017 5691
7b8dd722 5692=item precision, or maximum width
d74e8afc 5693X<precision>
7b8dd722 5694
6c8c9a8e 5695You can specify a precision (for numeric conversions) or a maximum
7b8dd722 5696width (for string conversions) by specifying a C<.> followed by a number.
1ff2d182 5697For floating point formats, with the exception of 'g' and 'G', this specifies
cf264981 5698the number of decimal places to show (the default being 6), e.g.:
7b8dd722
HS
5699
5700 # these examples are subject to system-specific variation
5701 printf '<%f>', 1; # prints "<1.000000>"
5702 printf '<%.1f>', 1; # prints "<1.0>"
5703 printf '<%.0f>', 1; # prints "<1>"
5704 printf '<%e>', 10; # prints "<1.000000e+01>"
5705 printf '<%.1e>', 10; # prints "<1.0e+01>"
5706
1ff2d182 5707For 'g' and 'G', this specifies the maximum number of digits to show,
cf264981 5708including prior to the decimal point as well as after it, e.g.:
1ff2d182
AS
5709
5710 # these examples are subject to system-specific variation
5711 printf '<%g>', 1; # prints "<1>"
5712 printf '<%.10g>', 1; # prints "<1>"
5713 printf '<%g>', 100; # prints "<100>"
5714 printf '<%.1g>', 100; # prints "<1e+02>"
5715 printf '<%.2g>', 100.01; # prints "<1e+02>"
5716 printf '<%.5g>', 100.01; # prints "<100.01>"
5717 printf '<%.4g>', 100.01; # prints "<100>"
5718
7b8dd722 5719For integer conversions, specifying a precision implies that the
9911cee9
TS
5720output of the number itself should be zero-padded to this width,
5721where the 0 flag is ignored:
5722
5723 printf '<%.6d>', 1; # prints "<000001>"
5724 printf '<%+.6d>', 1; # prints "<+000001>"
5725 printf '<%-10.6d>', 1; # prints "<000001 >"
5726 printf '<%10.6d>', 1; # prints "< 000001>"
5727 printf '<%010.6d>', 1; # prints "< 000001>"
5728 printf '<%+10.6d>', 1; # prints "< +000001>"
7b8dd722
HS
5729
5730 printf '<%.6x>', 1; # prints "<000001>"
5731 printf '<%#.6x>', 1; # prints "<0x000001>"
5732 printf '<%-10.6x>', 1; # prints "<000001 >"
9911cee9
TS
5733 printf '<%10.6x>', 1; # prints "< 000001>"
5734 printf '<%010.6x>', 1; # prints "< 000001>"
5735 printf '<%#10.6x>', 1; # prints "< 0x000001>"
7b8dd722
HS
5736
5737For string conversions, specifying a precision truncates the string
5738to fit in the specified width:
5739
5740 printf '<%.5s>', "truncated"; # prints "<trunc>"
5741 printf '<%10.5s>', "truncated"; # prints "< trunc>"
5742
5743You can also get the precision from the next argument using C<.*>:
b22c7a20 5744
7b8dd722
HS
5745 printf '<%.6x>', 1; # prints "<000001>"
5746 printf '<%.*x>', 6, 1; # prints "<000001>"
5747
9911cee9
TS
5748If a precision obtained through C<*> is negative, it has the same
5749effect as no precision.
5750
5751 printf '<%.*s>', 7, "string"; # prints "<string>"
5752 printf '<%.*s>', 3, "string"; # prints "<str>"
5753 printf '<%.*s>', 0, "string"; # prints "<>"
5754 printf '<%.*s>', -1, "string"; # prints "<string>"
5755
5756 printf '<%.*d>', 1, 0; # prints "<0>"
5757 printf '<%.*d>', 0, 0; # prints "<>"
5758 printf '<%.*d>', -1, 0; # prints "<0>"
5759
7b8dd722
HS
5760You cannot currently get the precision from a specified number,
5761but it is intended that this will be possible in the future using
cf264981 5762e.g. C<.*2$>:
7b8dd722
HS
5763
5764 printf '<%.*2$x>', 1, 6; # INVALID, but in future will print "<000001>"
5765
5766=item size
5767
5768For numeric conversions, you can specify the size to interpret the
1ff2d182
AS
5769number as using C<l>, C<h>, C<V>, C<q>, C<L>, or C<ll>. For integer
5770conversions (C<d u o x X b i D U O>), numbers are usually assumed to be
5771whatever the default integer size is on your platform (usually 32 or 64
5772bits), but you can override this to use instead one of the standard C types,
5773as supported by the compiler used to build Perl:
7b8dd722
HS
5774
5775 l interpret integer as C type "long" or "unsigned long"
5776 h interpret integer as C type "short" or "unsigned short"
1ff2d182
AS
5777 q, L or ll interpret integer as C type "long long", "unsigned long long".
5778 or "quads" (typically 64-bit integers)
7b8dd722 5779
1ff2d182
AS
5780The last will produce errors if Perl does not understand "quads" in your
5781installation. (This requires that either the platform natively supports quads
5782or Perl was specifically compiled to support quads.) You can find out
5783whether your Perl supports quads via L<Config>:
7b8dd722 5784
1ff2d182
AS
5785 use Config;
5786 ($Config{use64bitint} eq 'define' || $Config{longsize} >= 8) &&
5787 print "quads\n";
5788
5789For floating point conversions (C<e f g E F G>), numbers are usually assumed
5790to be the default floating point size on your platform (double or long double),
5791but you can force 'long double' with C<q>, C<L>, or C<ll> if your
5792platform supports them. You can find out whether your Perl supports long
5793doubles via L<Config>:
5794
5795 use Config;
5796 $Config{d_longdbl} eq 'define' && print "long doubles\n";
5797
5798You can find out whether Perl considers 'long double' to be the default
5799floating point size to use on your platform via L<Config>:
5800
5801 use Config;
5802 ($Config{uselongdouble} eq 'define') &&
5803 print "long doubles by default\n";
5804
5805It can also be the case that long doubles and doubles are the same thing:
5806
5807 use Config;
5808 ($Config{doublesize} == $Config{longdblsize}) &&
5809 print "doubles are long doubles\n";
5810
5811The size specifier C<V> has no effect for Perl code, but it is supported
7b8dd722
HS
5812for compatibility with XS code; it means 'use the standard size for
5813a Perl integer (or floating-point number)', which is already the
5814default for Perl code.
5815
a472f209
HS
5816=item order of arguments
5817
5818Normally, sprintf takes the next unused argument as the value to
5819format for each format specification. If the format specification
5820uses C<*> to require additional arguments, these are consumed from
5821the argument list in the order in which they appear in the format
5822specification I<before> the value to format. Where an argument is
5823specified using an explicit index, this does not affect the normal
5824order for the arguments (even when the explicitly specified index
5825would have been the next argument in any case).
5826
5827So:
5828
5829 printf '<%*.*s>', $a, $b, $c;
5830
5831would use C<$a> for the width, C<$b> for the precision and C<$c>
5832as the value to format, while:
5833
d8a2d19b 5834 printf '<%*1$.*s>', $a, $b;
a472f209
HS
5835
5836would use C<$a> for the width and the precision, and C<$b> as the
5837value to format.
5838
5839Here are some more examples - beware that when using an explicit
5840index, the C<$> may need to be escaped:
5841
5842 printf "%2\$d %d\n", 12, 34; # will print "34 12\n"
5843 printf "%2\$d %d %d\n", 12, 34; # will print "34 12 34\n"
5844 printf "%3\$d %d %d\n", 12, 34, 56; # will print "56 12 34\n"
5845 printf "%2\$*3\$d %d\n", 12, 34, 3; # will print " 34 12\n"
5846
7b8dd722 5847=back
b22c7a20 5848
7e4353e9
RGS
5849If C<use locale> is in effect, and POSIX::setlocale() has been called,
5850the character used for the decimal separator in formatted floating
5851point numbers is affected by the LC_NUMERIC locale. See L<perllocale>
5852and L<POSIX>.
a0d0e21e
LW
5853
5854=item sqrt EXPR
d74e8afc 5855X<sqrt> X<root> X<square root>
a0d0e21e 5856
54310121 5857=item sqrt
bbce6d69 5858
a0d0e21e 5859Return the square root of EXPR. If EXPR is omitted, returns square
2b5ab1e7
TC
5860root of C<$_>. Only works on non-negative operands, unless you've
5861loaded the standard Math::Complex module.
5862
5863 use Math::Complex;
5864 print sqrt(-2); # prints 1.4142135623731i
a0d0e21e
LW
5865
5866=item srand EXPR
d74e8afc 5867X<srand> X<seed> X<randseed>
a0d0e21e 5868
93dc8474
CS
5869=item srand
5870
0686c0b8
JH
5871Sets the random number seed for the C<rand> operator.
5872
0686c0b8
JH
5873The point of the function is to "seed" the C<rand> function so that
5874C<rand> can produce a different sequence each time you run your
e0b236fe 5875program.
0686c0b8 5876
e0b236fe
JH
5877If srand() is not called explicitly, it is called implicitly at the
5878first use of the C<rand> operator. However, this was not the case in
5879versions of Perl before 5.004, so if your script will run under older
5880Perl versions, it should call C<srand>.
93dc8474 5881
e0b236fe
JH
5882Most programs won't even call srand() at all, except those that
5883need a cryptographically-strong starting point rather than the
5884generally acceptable default, which is based on time of day,
5885process ID, and memory allocation, or the F</dev/urandom> device,
67408cae 5886if available.
9be67dbc 5887
e0b236fe
JH
5888You can call srand($seed) with the same $seed to reproduce the
5889I<same> sequence from rand(), but this is usually reserved for
5890generating predictable results for testing or debugging.
5891Otherwise, don't call srand() more than once in your program.
0686c0b8 5892
3a3e71eb
JH
5893Do B<not> call srand() (i.e. without an argument) more than once in
5894a script. The internal state of the random number generator should
0686c0b8 5895contain more entropy than can be provided by any seed, so calling
e0b236fe 5896srand() again actually I<loses> randomness.
0686c0b8 5897
e0b236fe
JH
5898Most implementations of C<srand> take an integer and will silently
5899truncate decimal numbers. This means C<srand(42)> will usually
5900produce the same results as C<srand(42.1)>. To be safe, always pass
5901C<srand> an integer.
0686c0b8
JH
5902
5903In versions of Perl prior to 5.004 the default seed was just the
5904current C<time>. This isn't a particularly good seed, so many old
5905programs supply their own seed value (often C<time ^ $$> or C<time ^
5906($$ + ($$ << 15))>), but that isn't necessary any more.
93dc8474 5907
cf264981
SP
5908For cryptographic purposes, however, you need something much more random
5909than the default seed. Checksumming the compressed output of one or more
2f9daede
TP
5910rapidly changing operating system status programs is the usual method. For
5911example:
28757baa 5912
784d6566 5913 srand (time ^ $$ ^ unpack "%L*", `ps axww | gzip -f`);
28757baa 5914
7660c0ab 5915If you're particularly concerned with this, see the C<Math::TrulyRandom>
0078ec44
RS
5916module in CPAN.
5917
54310121 5918Frequently called programs (like CGI scripts) that simply use
28757baa 5919
5920 time ^ $$
5921
54310121 5922for a seed can fall prey to the mathematical property that
28757baa 5923
5924 a^b == (a+1)^(b+1)
5925
0078ec44 5926one-third of the time. So don't do that.
f86702cc 5927
a0d0e21e 5928=item stat FILEHANDLE
435fbc73 5929X<stat> X<file, status> X<ctime>
a0d0e21e
LW
5930
5931=item stat EXPR
5932
5228a96c
SP
5933=item stat DIRHANDLE
5934
54310121 5935=item stat
bbce6d69 5936
1d2dff63 5937Returns a 13-element list giving the status info for a file, either
5228a96c
SP
5938the file opened via FILEHANDLE or DIRHANDLE, or named by EXPR. If EXPR is
5939omitted, it stats C<$_>. Returns a null list if the stat fails. Typically
5940used as follows:
a0d0e21e
LW
5941
5942 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
5943 $atime,$mtime,$ctime,$blksize,$blocks)
5944 = stat($filename);
5945
54310121 5946Not all fields are supported on all filesystem types. Here are the
61967be2 5947meanings of the fields:
c07a80fd 5948
54310121 5949 0 dev device number of filesystem
5950 1 ino inode number
5951 2 mode file mode (type and permissions)
5952 3 nlink number of (hard) links to the file
5953 4 uid numeric user ID of file's owner
5954 5 gid numeric group ID of file's owner
5955 6 rdev the device identifier (special files only)
5956 7 size total size of file, in bytes
1c74f1bd
GS
5957 8 atime last access time in seconds since the epoch
5958 9 mtime last modify time in seconds since the epoch
df2a7e48 5959 10 ctime inode change time in seconds since the epoch (*)
54310121 5960 11 blksize preferred block size for file system I/O
5961 12 blocks actual number of blocks allocated
c07a80fd 5962
5963(The epoch was at 00:00 January 1, 1970 GMT.)
5964
3e2557b2
RGS
5965(*) Not all fields are supported on all filesystem types. Notably, the
5966ctime field is non-portable. In particular, you cannot expect it to be a
5967"creation time", see L<perlport/"Files and Filesystems"> for details.
df2a7e48 5968
61967be2 5969If C<stat> is passed the special filehandle consisting of an underline, no
a0d0e21e 5970stat is done, but the current contents of the stat structure from the
61967be2 5971last C<stat>, C<lstat>, or filetest are returned. Example:
a0d0e21e
LW
5972
5973 if (-x $file && (($d) = stat(_)) && $d < 0) {
5974 print "$file is executable NFS file\n";
5975 }
5976
ca6e1c26
JH
5977(This works on machines only for which the device number is negative
5978under NFS.)
a0d0e21e 5979
2b5ab1e7 5980Because the mode contains both the file type and its permissions, you
b76cc8ba 5981should mask off the file type portion and (s)printf using a C<"%o">
2b5ab1e7
TC
5982if you want to see the real permissions.
5983
5984 $mode = (stat($filename))[2];
5985 printf "Permissions are %04o\n", $mode & 07777;
5986
19799a22 5987In scalar context, C<stat> returns a boolean value indicating success
1d2dff63
GS
5988or failure, and, if successful, sets the information associated with
5989the special filehandle C<_>.
5990
dd184578 5991The L<File::stat> module provides a convenient, by-name access mechanism:
2b5ab1e7
TC
5992
5993 use File::stat;
5994 $sb = stat($filename);
b76cc8ba 5995 printf "File is %s, size is %s, perm %04o, mtime %s\n",
2b5ab1e7
TC
5996 $filename, $sb->size, $sb->mode & 07777,
5997 scalar localtime $sb->mtime;
5998
ca6e1c26
JH
5999You can import symbolic mode constants (C<S_IF*>) and functions
6000(C<S_IS*>) from the Fcntl module:
6001
6002 use Fcntl ':mode';
6003
6004 $mode = (stat($filename))[2];
6005
6006 $user_rwx = ($mode & S_IRWXU) >> 6;
6007 $group_read = ($mode & S_IRGRP) >> 3;
6008 $other_execute = $mode & S_IXOTH;
6009
3155e0b0 6010 printf "Permissions are %04o\n", S_IMODE($mode), "\n";
ca6e1c26
JH
6011
6012 $is_setuid = $mode & S_ISUID;
ad605d16 6013 $is_directory = S_ISDIR($mode);
ca6e1c26
JH
6014
6015You could write the last two using the C<-u> and C<-d> operators.
61967be2 6016The commonly available C<S_IF*> constants are
ca6e1c26
JH
6017
6018 # Permissions: read, write, execute, for user, group, others.
6019
6020 S_IRWXU S_IRUSR S_IWUSR S_IXUSR
6021 S_IRWXG S_IRGRP S_IWGRP S_IXGRP
6022 S_IRWXO S_IROTH S_IWOTH S_IXOTH
61eff3bc 6023
3cee8101
RGS
6024 # Setuid/Setgid/Stickiness/SaveText.
6025 # Note that the exact meaning of these is system dependent.
ca6e1c26
JH
6026
6027 S_ISUID S_ISGID S_ISVTX S_ISTXT
6028
6029 # File types. Not necessarily all are available on your system.
6030
135ed46b 6031 S_IFREG S_IFDIR S_IFLNK S_IFBLK S_IFCHR S_IFIFO S_IFSOCK S_IFWHT S_ENFMT
ca6e1c26
JH
6032
6033 # The following are compatibility aliases for S_IRUSR, S_IWUSR, S_IXUSR.
6034
6035 S_IREAD S_IWRITE S_IEXEC
6036
61967be2 6037and the C<S_IF*> functions are
ca6e1c26 6038
3155e0b0 6039 S_IMODE($mode) the part of $mode containing the permission bits
ca6e1c26
JH
6040 and the setuid/setgid/sticky bits
6041
6042 S_IFMT($mode) the part of $mode containing the file type
b76cc8ba 6043 which can be bit-anded with e.g. S_IFREG
ca6e1c26
JH
6044 or with the following functions
6045
61967be2 6046 # The operators -f, -d, -l, -b, -c, -p, and -S.
ca6e1c26
JH
6047
6048 S_ISREG($mode) S_ISDIR($mode) S_ISLNK($mode)
6049 S_ISBLK($mode) S_ISCHR($mode) S_ISFIFO($mode) S_ISSOCK($mode)
6050
6051 # No direct -X operator counterpart, but for the first one
6052 # the -g operator is often equivalent. The ENFMT stands for
6053 # record flocking enforcement, a platform-dependent feature.
6054
6055 S_ISENFMT($mode) S_ISWHT($mode)
6056
6057See your native chmod(2) and stat(2) documentation for more details
61967be2 6058about the C<S_*> constants. To get status info for a symbolic link
c837d5b4 6059instead of the target file behind the link, use the C<lstat> function.
ca6e1c26 6060
36fb85f3
RGS
6061=item state EXPR
6062X<state>
6063
6064=item state TYPE EXPR
6065
6066=item state EXPR : ATTRS
6067
6068=item state TYPE EXPR : ATTRS
6069
6070C<state> declares a lexically scoped variable, just like C<my> does.
b708784e 6071However, those variables will never be reinitialized, contrary to
36fb85f3
RGS
6072lexical variables that are reinitialized each time their enclosing block
6073is entered.
6074
6075C<state> variables are only enabled when the C<feature 'state'> pragma is
6076in effect. See L<feature>.
6077
a0d0e21e 6078=item study SCALAR
d74e8afc 6079X<study>
a0d0e21e
LW
6080
6081=item study
6082
184e9718 6083Takes extra time to study SCALAR (C<$_> if unspecified) in anticipation of
a0d0e21e
LW
6084doing many pattern matches on the string before it is next modified.
6085This may or may not save time, depending on the nature and number of
6086patterns you are searching on, and on the distribution of character
19799a22 6087frequencies in the string to be searched--you probably want to compare
5f05dabc 6088run times with and without it to see which runs faster. Those loops
cf264981 6089that scan for many short constant strings (including the constant
a0d0e21e 6090parts of more complex patterns) will benefit most. You may have only
19799a22
GS
6091one C<study> active at a time--if you study a different scalar the first
6092is "unstudied". (The way C<study> works is this: a linked list of every
a0d0e21e 6093character in the string to be searched is made, so we know, for
7660c0ab 6094example, where all the C<'k'> characters are. From each search string,
a0d0e21e
LW
6095the rarest character is selected, based on some static frequency tables
6096constructed from some C programs and English text. Only those places
6097that contain this "rarest" character are examined.)
6098
5a964f20 6099For example, here is a loop that inserts index producing entries
a0d0e21e
LW
6100before any line containing a certain pattern:
6101
6102 while (<>) {
6103 study;
2b5ab1e7
TC
6104 print ".IX foo\n" if /\bfoo\b/;
6105 print ".IX bar\n" if /\bbar\b/;
6106 print ".IX blurfl\n" if /\bblurfl\b/;
5a964f20 6107 # ...
a0d0e21e
LW
6108 print;
6109 }
6110
951ba7fe
GS
6111In searching for C</\bfoo\b/>, only those locations in C<$_> that contain C<f>
6112will be looked at, because C<f> is rarer than C<o>. In general, this is
a0d0e21e
LW
6113a big win except in pathological cases. The only question is whether
6114it saves you more time than it took to build the linked list in the
6115first place.
6116
6117Note that if you have to look for strings that you don't know till
19799a22 6118runtime, you can build an entire loop as a string and C<eval> that to
a0d0e21e 6119avoid recompiling all your patterns all the time. Together with
7660c0ab 6120undefining C<$/> to input entire files as one record, this can be very
f86cebdf 6121fast, often faster than specialized programs like fgrep(1). The following
184e9718 6122scans a list of files (C<@files>) for a list of words (C<@words>), and prints
a0d0e21e
LW
6123out the names of those files that contain a match:
6124
6125 $search = 'while (<>) { study;';
6126 foreach $word (@words) {
6127 $search .= "++\$seen{\$ARGV} if /\\b$word\\b/;\n";
6128 }
6129 $search .= "}";
6130 @ARGV = @files;
6131 undef $/;
6132 eval $search; # this screams
5f05dabc 6133 $/ = "\n"; # put back to normal input delimiter
a0d0e21e
LW
6134 foreach $file (sort keys(%seen)) {
6135 print $file, "\n";
6136 }
6137
1d2de774 6138=item sub NAME BLOCK
d74e8afc 6139X<sub>
cb1a09d0 6140
1d2de774 6141=item sub NAME (PROTO) BLOCK
cb1a09d0 6142
1d2de774
JH
6143=item sub NAME : ATTRS BLOCK
6144
6145=item sub NAME (PROTO) : ATTRS BLOCK
6146
6147This is subroutine definition, not a real function I<per se>.
6148Without a BLOCK it's just a forward declaration. Without a NAME,
6149it's an anonymous function declaration, and does actually return
6150a value: the CODE ref of the closure you just created.
cb1a09d0 6151
1d2de774 6152See L<perlsub> and L<perlref> for details about subroutines and
0795dc2b 6153references, and L<attributes> and L<Attribute::Handlers> for more
1d2de774 6154information about attributes.
cb1a09d0 6155
87275199 6156=item substr EXPR,OFFSET,LENGTH,REPLACEMENT
d74e8afc 6157X<substr> X<substring> X<mid> X<left> X<right>
7b8d334a 6158
87275199 6159=item substr EXPR,OFFSET,LENGTH
a0d0e21e
LW
6160
6161=item substr EXPR,OFFSET
6162
6163Extracts a substring out of EXPR and returns it. First character is at
7660c0ab 6164offset C<0>, or whatever you've set C<$[> to (but don't do that).
84902520 6165If OFFSET is negative (or more precisely, less than C<$[>), starts
87275199
GS
6166that far from the end of the string. If LENGTH is omitted, returns
6167everything to the end of the string. If LENGTH is negative, leaves that
748a9306
LW
6168many characters off the end of the string.
6169
e1de3ec0
GS
6170 my $s = "The black cat climbed the green tree";
6171 my $color = substr $s, 4, 5; # black
6172 my $middle = substr $s, 4, -11; # black cat climbed the
6173 my $end = substr $s, 14; # climbed the green tree
6174 my $tail = substr $s, -4; # tree
6175 my $z = substr $s, -4, 2; # tr
6176
2b5ab1e7 6177You can use the substr() function as an lvalue, in which case EXPR
87275199
GS
6178must itself be an lvalue. If you assign something shorter than LENGTH,
6179the string will shrink, and if you assign something longer than LENGTH,
2b5ab1e7 6180the string will grow to accommodate it. To keep the string the same
19799a22 6181length you may need to pad or chop your value using C<sprintf>.
a0d0e21e 6182
87275199
GS
6183If OFFSET and LENGTH specify a substring that is partly outside the
6184string, only the part within the string is returned. If the substring
6185is beyond either end of the string, substr() returns the undefined
6186value and produces a warning. When used as an lvalue, specifying a
6187substring that is entirely outside the string is a fatal error.
6188Here's an example showing the behavior for boundary cases:
6189
6190 my $name = 'fred';
6191 substr($name, 4) = 'dy'; # $name is now 'freddy'
6192 my $null = substr $name, 6, 2; # returns '' (no warning)
6193 my $oops = substr $name, 7; # returns undef, with warning
6194 substr($name, 7) = 'gap'; # fatal error
6195
2b5ab1e7 6196An alternative to using substr() as an lvalue is to specify the
7b8d334a 6197replacement string as the 4th argument. This allows you to replace
2b5ab1e7
TC
6198parts of the EXPR and return what was there before in one operation,
6199just as you can with splice().
7b8d334a 6200
e1de3ec0
GS
6201 my $s = "The black cat climbed the green tree";
6202 my $z = substr $s, 14, 7, "jumped from"; # climbed
6203 # $s is now "The black cat jumped from the green tree"
6204
cf264981 6205Note that the lvalue returned by the 3-arg version of substr() acts as
91f73676
DM
6206a 'magic bullet'; each time it is assigned to, it remembers which part
6207of the original string is being modified; for example:
6208
6209 $x = '1234';
6210 for (substr($x,1,2)) {
6211 $_ = 'a'; print $x,"\n"; # prints 1a4
6212 $_ = 'xyz'; print $x,"\n"; # prints 1xyz4
6213 $x = '56789';
6214 $_ = 'pq'; print $x,"\n"; # prints 5pq9
6215 }
6216
91f73676
DM
6217Prior to Perl version 5.9.1, the result of using an lvalue multiple times was
6218unspecified.
c67bbae0 6219
a0d0e21e 6220=item symlink OLDFILE,NEWFILE
d74e8afc 6221X<symlink> X<link> X<symbolic link> X<link, symbolic>
a0d0e21e
LW
6222
6223Creates a new filename symbolically linked to the old filename.
7660c0ab 6224Returns C<1> for success, C<0> otherwise. On systems that don't support
a0d0e21e
LW
6225symbolic links, produces a fatal error at run time. To check for that,
6226use eval:
6227
2b5ab1e7 6228 $symlink_exists = eval { symlink("",""); 1 };
a0d0e21e 6229
5702da47 6230=item syscall NUMBER, LIST
d74e8afc 6231X<syscall> X<system call>
a0d0e21e
LW
6232
6233Calls the system call specified as the first element of the list,
6234passing the remaining elements as arguments to the system call. If
6235unimplemented, produces a fatal error. The arguments are interpreted
6236as follows: if a given argument is numeric, the argument is passed as
6237an int. If not, the pointer to the string value is passed. You are
6238responsible to make sure a string is pre-extended long enough to
a3cb178b 6239receive any result that might be written into a string. You can't use a
19799a22 6240string literal (or other read-only string) as an argument to C<syscall>
a3cb178b
GS
6241because Perl has to assume that any string pointer might be written
6242through. If your
a0d0e21e 6243integer arguments are not literals and have never been interpreted in a
7660c0ab 6244numeric context, you may need to add C<0> to them to force them to look
19799a22 6245like numbers. This emulates the C<syswrite> function (or vice versa):
a0d0e21e
LW
6246
6247 require 'syscall.ph'; # may need to run h2ph
a3cb178b
GS
6248 $s = "hi there\n";
6249 syscall(&SYS_write, fileno(STDOUT), $s, length $s);
a0d0e21e 6250
5f05dabc 6251Note that Perl supports passing of up to only 14 arguments to your system call,
a0d0e21e
LW
6252which in practice should usually suffice.
6253
fb73857a 6254Syscall returns whatever value returned by the system call it calls.
19799a22 6255If the system call fails, C<syscall> returns C<-1> and sets C<$!> (errno).
7660c0ab 6256Note that some system calls can legitimately return C<-1>. The proper
fb73857a 6257way to handle such calls is to assign C<$!=0;> before the call and
7660c0ab 6258check the value of C<$!> if syscall returns C<-1>.
fb73857a 6259
6260There's a problem with C<syscall(&SYS_pipe)>: it returns the file
6261number of the read end of the pipe it creates. There is no way
b76cc8ba 6262to retrieve the file number of the other end. You can avoid this
19799a22 6263problem by using C<pipe> instead.
fb73857a 6264
c07a80fd 6265=item sysopen FILEHANDLE,FILENAME,MODE
d74e8afc 6266X<sysopen>
c07a80fd 6267
6268=item sysopen FILEHANDLE,FILENAME,MODE,PERMS
6269
6270Opens the file whose filename is given by FILENAME, and associates it
6271with FILEHANDLE. If FILEHANDLE is an expression, its value is used as
6272the name of the real filehandle wanted. This function calls the
19799a22 6273underlying operating system's C<open> function with the parameters
c07a80fd 6274FILENAME, MODE, PERMS.
6275
6276The possible values and flag bits of the MODE parameter are
6277system-dependent; they are available via the standard module C<Fcntl>.
ea2b5ef6
JH
6278See the documentation of your operating system's C<open> to see which
6279values and flag bits are available. You may combine several flags
6280using the C<|>-operator.
6281
6282Some of the most common values are C<O_RDONLY> for opening the file in
6283read-only mode, C<O_WRONLY> for opening the file in write-only mode,
c188b257 6284and C<O_RDWR> for opening the file in read-write mode.
d74e8afc 6285X<O_RDONLY> X<O_RDWR> X<O_WRONLY>
ea2b5ef6 6286
adf5897a
DF
6287For historical reasons, some values work on almost every system
6288supported by perl: zero means read-only, one means write-only, and two
6289means read/write. We know that these values do I<not> work under
7c5ffed3 6290OS/390 & VM/ESA Unix and on the Macintosh; you probably don't want to
4af147f6 6291use them in new code.
c07a80fd 6292
19799a22 6293If the file named by FILENAME does not exist and the C<open> call creates
7660c0ab 6294it (typically because MODE includes the C<O_CREAT> flag), then the value of
5a964f20 6295PERMS specifies the permissions of the newly created file. If you omit
19799a22 6296the PERMS argument to C<sysopen>, Perl uses the octal value C<0666>.
5a964f20 6297These permission values need to be in octal, and are modified by your
0591cd52 6298process's current C<umask>.
d74e8afc 6299X<O_CREAT>
0591cd52 6300
ea2b5ef6
JH
6301In many systems the C<O_EXCL> flag is available for opening files in
6302exclusive mode. This is B<not> locking: exclusiveness means here that
c188b257
PF
6303if the file already exists, sysopen() fails. C<O_EXCL> may not work
6304on network filesystems, and has no effect unless the C<O_CREAT> flag
6305is set as well. Setting C<O_CREAT|O_EXCL> prevents the file from
6306being opened if it is a symbolic link. It does not protect against
6307symbolic links in the file's path.
d74e8afc 6308X<O_EXCL>
c188b257
PF
6309
6310Sometimes you may want to truncate an already-existing file. This
6311can be done using the C<O_TRUNC> flag. The behavior of
6312C<O_TRUNC> with C<O_RDONLY> is undefined.
d74e8afc 6313X<O_TRUNC>
ea2b5ef6 6314
19799a22 6315You should seldom if ever use C<0644> as argument to C<sysopen>, because
2b5ab1e7
TC
6316that takes away the user's option to have a more permissive umask.
6317Better to omit it. See the perlfunc(1) entry on C<umask> for more
6318on this.
c07a80fd 6319
4af147f6
CS
6320Note that C<sysopen> depends on the fdopen() C library function.
6321On many UNIX systems, fdopen() is known to fail when file descriptors
6322exceed a certain value, typically 255. If you need more file
6323descriptors than that, consider rebuilding Perl to use the C<sfio>
6324library, or perhaps using the POSIX::open() function.
6325
2b5ab1e7 6326See L<perlopentut> for a kinder, gentler explanation of opening files.
28757baa 6327
a0d0e21e 6328=item sysread FILEHANDLE,SCALAR,LENGTH,OFFSET
d74e8afc 6329X<sysread>
a0d0e21e
LW
6330
6331=item sysread FILEHANDLE,SCALAR,LENGTH
6332
3874323d
JH
6333Attempts to read LENGTH bytes of data into variable SCALAR from the
6334specified FILEHANDLE, using the system call read(2). It bypasses
6335buffered IO, so mixing this with other kinds of reads, C<print>,
6336C<write>, C<seek>, C<tell>, or C<eof> can cause confusion because the
6337perlio or stdio layers usually buffers data. Returns the number of
6338bytes actually read, C<0> at end of file, or undef if there was an
6339error (in the latter case C<$!> is also set). SCALAR will be grown or
6340shrunk so that the last byte actually read is the last byte of the
6341scalar after the read.
ff68c719 6342
6343An OFFSET may be specified to place the read data at some place in the
6344string other than the beginning. A negative OFFSET specifies
9124316e
JH
6345placement at that many characters counting backwards from the end of
6346the string. A positive OFFSET greater than the length of SCALAR
6347results in the string being padded to the required size with C<"\0">
6348bytes before the result of the read is appended.
a0d0e21e 6349
2b5ab1e7
TC
6350There is no syseof() function, which is ok, since eof() doesn't work
6351very well on device files (like ttys) anyway. Use sysread() and check
19799a22 6352for a return value for 0 to decide whether you're done.
2b5ab1e7 6353
3874323d
JH
6354Note that if the filehandle has been marked as C<:utf8> Unicode
6355characters are read instead of bytes (the LENGTH, OFFSET, and the
5eadf7c5 6356return value of sysread() are in Unicode characters).
3874323d
JH
6357The C<:encoding(...)> layer implicitly introduces the C<:utf8> layer.
6358See L</binmode>, L</open>, and the C<open> pragma, L<open>.
6359
137443ea 6360=item sysseek FILEHANDLE,POSITION,WHENCE
d74e8afc 6361X<sysseek> X<lseek>
137443ea 6362
3874323d 6363Sets FILEHANDLE's system position in bytes using the system call
9124316e
JH
6364lseek(2). FILEHANDLE may be an expression whose value gives the name
6365of the filehandle. The values for WHENCE are C<0> to set the new
6366position to POSITION, C<1> to set the it to the current position plus
6367POSITION, and C<2> to set it to EOF plus POSITION (typically
6368negative).
6369
6370Note the I<in bytes>: even if the filehandle has been set to operate
740d4bb2
JW
6371on characters (for example by using the C<:encoding(utf8)> I/O layer),
6372tell() will return byte offsets, not character offsets (because
6373implementing that would render sysseek() very slow).
9124316e 6374
3874323d 6375sysseek() bypasses normal buffered IO, so mixing this with reads (other
aaa270e5 6376than C<sysread>, for example C<< <> >> or read()) C<print>, C<write>,
9124316e 6377C<seek>, C<tell>, or C<eof> may cause confusion.
86989e5d
JH
6378
6379For WHENCE, you may also use the constants C<SEEK_SET>, C<SEEK_CUR>,
6380and C<SEEK_END> (start of the file, current position, end of the file)
6381from the Fcntl module. Use of the constants is also more portable
6382than relying on 0, 1, and 2. For example to define a "systell" function:
6383
554ad1fc 6384 use Fcntl 'SEEK_CUR';
86989e5d 6385 sub systell { sysseek($_[0], 0, SEEK_CUR) }
8903cb82 6386
6387Returns the new position, or the undefined value on failure. A position
19799a22
GS
6388of zero is returned as the string C<"0 but true">; thus C<sysseek> returns
6389true on success and false on failure, yet you can still easily determine
8903cb82 6390the new position.
137443ea 6391
a0d0e21e 6392=item system LIST
d74e8afc 6393X<system> X<shell>
a0d0e21e 6394
8bf3b016
GS
6395=item system PROGRAM LIST
6396
19799a22
GS
6397Does exactly the same thing as C<exec LIST>, except that a fork is
6398done first, and the parent process waits for the child process to
6399complete. Note that argument processing varies depending on the
6400number of arguments. If there is more than one argument in LIST,
6401or if LIST is an array with more than one value, starts the program
6402given by the first element of the list with arguments given by the
6403rest of the list. If there is only one scalar argument, the argument
6404is checked for shell metacharacters, and if there are any, the
6405entire argument is passed to the system's command shell for parsing
6406(this is C</bin/sh -c> on Unix platforms, but varies on other
6407platforms). If there are no shell metacharacters in the argument,
6408it is split into words and passed directly to C<execvp>, which is
6409more efficient.
6410
0f897271
GS
6411Beginning with v5.6.0, Perl will attempt to flush all files opened for
6412output before any operation that may do a fork, but this may not be
6413supported on some platforms (see L<perlport>). To be safe, you may need
6414to set C<$|> ($AUTOFLUSH in English) or call the C<autoflush()> method
6415of C<IO::Handle> on any open handles.
a2008d6d 6416
9d6eb86e 6417The return value is the exit status of the program as returned by the
25379e53
RGS
6418C<wait> call. To get the actual exit value, shift right by eight (see
6419below). See also L</exec>. This is I<not> what you want to use to capture
54310121 6420the output from a command, for that you should use merely backticks or
d5a9bfb0 6421C<qx//>, as described in L<perlop/"`STRING`">. Return value of -1
25379e53
RGS
6422indicates a failure to start the program or an error of the wait(2) system
6423call (inspect $! for the reason).
a0d0e21e 6424
19799a22
GS
6425Like C<exec>, C<system> allows you to lie to a program about its name if
6426you use the C<system PROGRAM LIST> syntax. Again, see L</exec>.
8bf3b016 6427
4c2e8b59
BD
6428Since C<SIGINT> and C<SIGQUIT> are ignored during the execution of
6429C<system>, if you expect your program to terminate on receipt of these
6430signals you will need to arrange to do so yourself based on the return
6431value.
28757baa 6432
6433 @args = ("command", "arg1", "arg2");
54310121 6434 system(@args) == 0
6435 or die "system @args failed: $?"
28757baa 6436
5a964f20
TC
6437You can check all the failure possibilities by inspecting
6438C<$?> like this:
28757baa 6439
4ef107a6
DM
6440 if ($? == -1) {
6441 print "failed to execute: $!\n";
6442 }
6443 elsif ($? & 127) {
6444 printf "child died with signal %d, %s coredump\n",
6445 ($? & 127), ($? & 128) ? 'with' : 'without';
6446 }
6447 else {
6448 printf "child exited with value %d\n", $? >> 8;
6449 }
6450
e5218da5
GA
6451Alternatively you might inspect the value of C<${^CHILD_ERROR_NATIVE}>
6452with the W*() calls of the POSIX extension.
9d6eb86e 6453
c8db1d39
TC
6454When the arguments get executed via the system shell, results
6455and return codes will be subject to its quirks and capabilities.
6456See L<perlop/"`STRING`"> and L</exec> for details.
bb32b41a 6457
a0d0e21e 6458=item syswrite FILEHANDLE,SCALAR,LENGTH,OFFSET
d74e8afc 6459X<syswrite>
a0d0e21e
LW
6460
6461=item syswrite FILEHANDLE,SCALAR,LENGTH
6462
145d37e2
GA
6463=item syswrite FILEHANDLE,SCALAR
6464
3874323d
JH
6465Attempts to write LENGTH bytes of data from variable SCALAR to the
6466specified FILEHANDLE, using the system call write(2). If LENGTH is
6467not specified, writes whole SCALAR. It bypasses buffered IO, so
9124316e 6468mixing this with reads (other than C<sysread())>, C<print>, C<write>,
3874323d
JH
6469C<seek>, C<tell>, or C<eof> may cause confusion because the perlio and
6470stdio layers usually buffers data. Returns the number of bytes
6471actually written, or C<undef> if there was an error (in this case the
6472errno variable C<$!> is also set). If the LENGTH is greater than the
6473available data in the SCALAR after the OFFSET, only as much data as is
6474available will be written.
ff68c719 6475
6476An OFFSET may be specified to write the data from some part of the
6477string other than the beginning. A negative OFFSET specifies writing
9124316e
JH
6478that many characters counting backwards from the end of the string.
6479In the case the SCALAR is empty you can use OFFSET but only zero offset.
6480
1d714267
JH
6481Note that if the filehandle has been marked as C<:utf8>, Unicode
6482characters are written instead of bytes (the LENGTH, OFFSET, and the
6483return value of syswrite() are in UTF-8 encoded Unicode characters).
3874323d
JH
6484The C<:encoding(...)> layer implicitly introduces the C<:utf8> layer.
6485See L</binmode>, L</open>, and the C<open> pragma, L<open>.
a0d0e21e
LW
6486
6487=item tell FILEHANDLE
d74e8afc 6488X<tell>
a0d0e21e
LW
6489
6490=item tell
6491
9124316e
JH
6492Returns the current position I<in bytes> for FILEHANDLE, or -1 on
6493error. FILEHANDLE may be an expression whose value gives the name of
6494the actual filehandle. If FILEHANDLE is omitted, assumes the file
6495last read.
6496
6497Note the I<in bytes>: even if the filehandle has been set to
740d4bb2
JW
6498operate on characters (for example by using the C<:encoding(utf8)> open
6499layer), tell() will return byte offsets, not character offsets (because
6500that would render seek() and tell() rather slow).
2b5ab1e7 6501
cfd73201
JH
6502The return value of tell() for the standard streams like the STDIN
6503depends on the operating system: it may return -1 or something else.
6504tell() on pipes, fifos, and sockets usually returns -1.
6505
19799a22 6506There is no C<systell> function. Use C<sysseek(FH, 0, 1)> for that.
a0d0e21e 6507
59c9df15
NIS
6508Do not use tell() (or other buffered I/O operations) on a file handle
6509that has been manipulated by sysread(), syswrite() or sysseek().
6510Those functions ignore the buffering, while tell() does not.
9124316e 6511
a0d0e21e 6512=item telldir DIRHANDLE
d74e8afc 6513X<telldir>
a0d0e21e 6514
19799a22
GS
6515Returns the current position of the C<readdir> routines on DIRHANDLE.
6516Value may be given to C<seekdir> to access a particular location in a
cf264981
SP
6517directory. C<telldir> has the same caveats about possible directory
6518compaction as the corresponding system library routine.
a0d0e21e 6519
4633a7c4 6520=item tie VARIABLE,CLASSNAME,LIST
d74e8afc 6521X<tie>
a0d0e21e 6522
4633a7c4
LW
6523This function binds a variable to a package class that will provide the
6524implementation for the variable. VARIABLE is the name of the variable
6525to be enchanted. CLASSNAME is the name of a class implementing objects
19799a22 6526of correct type. Any additional arguments are passed to the C<new>
8a059744
GS
6527method of the class (meaning C<TIESCALAR>, C<TIEHANDLE>, C<TIEARRAY>,
6528or C<TIEHASH>). Typically these are arguments such as might be passed
19799a22
GS
6529to the C<dbm_open()> function of C. The object returned by the C<new>
6530method is also returned by the C<tie> function, which would be useful
8a059744 6531if you want to access other methods in CLASSNAME.
a0d0e21e 6532
19799a22 6533Note that functions such as C<keys> and C<values> may return huge lists
1d2dff63 6534when used on large objects, like DBM files. You may prefer to use the
19799a22 6535C<each> function to iterate over such. Example:
a0d0e21e
LW
6536
6537 # print out history file offsets
4633a7c4 6538 use NDBM_File;
da0045b7 6539 tie(%HIST, 'NDBM_File', '/usr/lib/news/history', 1, 0);
a0d0e21e
LW
6540 while (($key,$val) = each %HIST) {
6541 print $key, ' = ', unpack('L',$val), "\n";
6542 }
6543 untie(%HIST);
6544
aa689395 6545A class implementing a hash should have the following methods:
a0d0e21e 6546
4633a7c4 6547 TIEHASH classname, LIST
a0d0e21e
LW
6548 FETCH this, key
6549 STORE this, key, value
6550 DELETE this, key
8a059744 6551 CLEAR this
a0d0e21e
LW
6552 EXISTS this, key
6553 FIRSTKEY this
6554 NEXTKEY this, lastkey
a3bcc51e 6555 SCALAR this
8a059744 6556 DESTROY this
d7da42b7 6557 UNTIE this
a0d0e21e 6558
4633a7c4 6559A class implementing an ordinary array should have the following methods:
a0d0e21e 6560
4633a7c4 6561 TIEARRAY classname, LIST
a0d0e21e
LW
6562 FETCH this, key
6563 STORE this, key, value
8a059744
GS
6564 FETCHSIZE this
6565 STORESIZE this, count
6566 CLEAR this
6567 PUSH this, LIST
6568 POP this
6569 SHIFT this
6570 UNSHIFT this, LIST
6571 SPLICE this, offset, length, LIST
6572 EXTEND this, count
6573 DESTROY this
d7da42b7 6574 UNTIE this
8a059744
GS
6575
6576A class implementing a file handle should have the following methods:
6577
6578 TIEHANDLE classname, LIST
6579 READ this, scalar, length, offset
6580 READLINE this
6581 GETC this
6582 WRITE this, scalar, length, offset
6583 PRINT this, LIST
6584 PRINTF this, format, LIST
e08f2115
GA
6585 BINMODE this
6586 EOF this
6587 FILENO this
6588 SEEK this, position, whence
6589 TELL this
6590 OPEN this, mode, LIST
8a059744
GS
6591 CLOSE this
6592 DESTROY this
d7da42b7 6593 UNTIE this
a0d0e21e 6594
4633a7c4 6595A class implementing a scalar should have the following methods:
a0d0e21e 6596
4633a7c4 6597 TIESCALAR classname, LIST
54310121 6598 FETCH this,
a0d0e21e 6599 STORE this, value
8a059744 6600 DESTROY this
d7da42b7 6601 UNTIE this
8a059744
GS
6602
6603Not all methods indicated above need be implemented. See L<perltie>,
2b5ab1e7 6604L<Tie::Hash>, L<Tie::Array>, L<Tie::Scalar>, and L<Tie::Handle>.
a0d0e21e 6605
19799a22 6606Unlike C<dbmopen>, the C<tie> function will not use or require a module
4633a7c4 6607for you--you need to do that explicitly yourself. See L<DB_File>
19799a22 6608or the F<Config> module for interesting C<tie> implementations.
4633a7c4 6609
b687b08b 6610For further details see L<perltie>, L<"tied VARIABLE">.
cc6b7395 6611
f3cbc334 6612=item tied VARIABLE
d74e8afc 6613X<tied>
f3cbc334
RS
6614
6615Returns a reference to the object underlying VARIABLE (the same value
19799a22 6616that was originally returned by the C<tie> call that bound the variable
f3cbc334
RS
6617to a package.) Returns the undefined value if VARIABLE isn't tied to a
6618package.
6619
a0d0e21e 6620=item time
d74e8afc 6621X<time> X<epoch>
a0d0e21e 6622
da0045b7 6623Returns the number of non-leap seconds since whatever time the system
ef4d88db
NC
6624considers to be the epoch, suitable for feeding to C<gmtime> and
6625C<localtime>. On most systems the epoch is 00:00:00 UTC, January 1, 1970;
6626a prominent exception being Mac OS Classic which uses 00:00:00, January 1,
66271904 in the current local time zone for its epoch.
a0d0e21e 6628
68f8bed4 6629For measuring time in better granularity than one second,
435fbc73 6630you may use either the L<Time::HiRes> module (from CPAN, and starting from
c5f9c75a
RGS
6631Perl 5.8 part of the standard distribution), or if you have
6632gettimeofday(2), you may be able to use the C<syscall> interface of Perl.
6633See L<perlfaq8> for details.
68f8bed4 6634
435fbc73
GS
6635For date and time processing look at the many related modules on CPAN.
6636For a comprehensive date and time representation look at the
6637L<DateTime> module.
6638
a0d0e21e 6639=item times
d74e8afc 6640X<times>
a0d0e21e 6641
1d2dff63 6642Returns a four-element list giving the user and system times, in
a0d0e21e
LW
6643seconds, for this process and the children of this process.
6644
6645 ($user,$system,$cuser,$csystem) = times;
6646
dc19f4fb
MJD
6647In scalar context, C<times> returns C<$user>.
6648
2a958fe2
HS
6649Note that times for children are included only after they terminate.
6650
a0d0e21e
LW
6651=item tr///
6652
19799a22 6653The transliteration operator. Same as C<y///>. See L<perlop>.
a0d0e21e
LW
6654
6655=item truncate FILEHANDLE,LENGTH
d74e8afc 6656X<truncate>
a0d0e21e
LW
6657
6658=item truncate EXPR,LENGTH
6659
6660Truncates the file opened on FILEHANDLE, or named by EXPR, to the
6661specified length. Produces a fatal error if truncate isn't implemented
19799a22 6662on your system. Returns true if successful, the undefined value
a3cb178b 6663otherwise.
a0d0e21e 6664
90ddc76f
MS
6665The behavior is undefined if LENGTH is greater than the length of the
6666file.
6667
8577f58c
RK
6668The position in the file of FILEHANDLE is left unchanged. You may want to
6669call L<seek> before writing to the file.
6670
a0d0e21e 6671=item uc EXPR
d74e8afc 6672X<uc> X<uppercase> X<toupper>
a0d0e21e 6673
54310121 6674=item uc
bbce6d69 6675
a0d0e21e 6676Returns an uppercased version of EXPR. This is the internal function
ad0029c4
JH
6677implementing the C<\U> escape in double-quoted strings. Respects
6678current LC_CTYPE locale if C<use locale> in force. See L<perllocale>
983ffd37
JH
6679and L<perlunicode> for more details about locale and Unicode support.
6680It does not attempt to do titlecase mapping on initial letters. See
6681C<ucfirst> for that.
a0d0e21e 6682
7660c0ab 6683If EXPR is omitted, uses C<$_>.
bbce6d69 6684
a0d0e21e 6685=item ucfirst EXPR
d74e8afc 6686X<ucfirst> X<uppercase>
a0d0e21e 6687
54310121 6688=item ucfirst
bbce6d69 6689
ad0029c4
JH
6690Returns the value of EXPR with the first character in uppercase
6691(titlecase in Unicode). This is the internal function implementing
6692the C<\u> escape in double-quoted strings. Respects current LC_CTYPE
983ffd37
JH
6693locale if C<use locale> in force. See L<perllocale> and L<perlunicode>
6694for more details about locale and Unicode support.
a0d0e21e 6695
7660c0ab 6696If EXPR is omitted, uses C<$_>.
bbce6d69 6697
a0d0e21e 6698=item umask EXPR
d74e8afc 6699X<umask>
a0d0e21e
LW
6700
6701=item umask
6702
2f9daede 6703Sets the umask for the process to EXPR and returns the previous value.
eec2d3df
GS
6704If EXPR is omitted, merely returns the current umask.
6705
0591cd52
NT
6706The Unix permission C<rwxr-x---> is represented as three sets of three
6707bits, or three octal digits: C<0750> (the leading 0 indicates octal
b5a41e52 6708and isn't one of the digits). The C<umask> value is such a number
0591cd52
NT
6709representing disabled permissions bits. The permission (or "mode")
6710values you pass C<mkdir> or C<sysopen> are modified by your umask, so
6711even if you tell C<sysopen> to create a file with permissions C<0777>,
6712if your umask is C<0022> then the file will actually be created with
6713permissions C<0755>. If your C<umask> were C<0027> (group can't
6714write; others can't read, write, or execute), then passing
19799a22 6715C<sysopen> C<0666> would create a file with mode C<0640> (C<0666 &~
0591cd52
NT
6716027> is C<0640>).
6717
6718Here's some advice: supply a creation mode of C<0666> for regular
19799a22
GS
6719files (in C<sysopen>) and one of C<0777> for directories (in
6720C<mkdir>) and executable files. This gives users the freedom of
0591cd52
NT
6721choice: if they want protected files, they might choose process umasks
6722of C<022>, C<027>, or even the particularly antisocial mask of C<077>.
6723Programs should rarely if ever make policy decisions better left to
6724the user. The exception to this is when writing files that should be
6725kept private: mail files, web browser cookies, I<.rhosts> files, and
6726so on.
6727
f86cebdf 6728If umask(2) is not implemented on your system and you are trying to
eec2d3df 6729restrict access for I<yourself> (i.e., (EXPR & 0700) > 0), produces a
f86cebdf 6730fatal error at run time. If umask(2) is not implemented and you are
eec2d3df
GS
6731not trying to restrict access for yourself, returns C<undef>.
6732
6733Remember that a umask is a number, usually given in octal; it is I<not> a
6734string of octal digits. See also L</oct>, if all you have is a string.
a0d0e21e
LW
6735
6736=item undef EXPR
d74e8afc 6737X<undef> X<undefine>
a0d0e21e
LW
6738
6739=item undef
6740
54310121 6741Undefines the value of EXPR, which must be an lvalue. Use only on a
19799a22 6742scalar value, an array (using C<@>), a hash (using C<%>), a subroutine
92d1d699 6743(using C<&>), or a typeglob (using C<*>). (Saying C<undef $hash{$key}>
20408e3c
GS
6744will probably not do what you expect on most predefined variables or
6745DBM list values, so don't do that; see L<delete>.) Always returns the
6746undefined value. You can omit the EXPR, in which case nothing is
6747undefined, but you still get an undefined value that you could, for
6748instance, return from a subroutine, assign to a variable or pass as a
6749parameter. Examples:
a0d0e21e
LW
6750
6751 undef $foo;
f86cebdf 6752 undef $bar{'blurfl'}; # Compare to: delete $bar{'blurfl'};
a0d0e21e 6753 undef @ary;
aa689395 6754 undef %hash;
a0d0e21e 6755 undef &mysub;
20408e3c 6756 undef *xyz; # destroys $xyz, @xyz, %xyz, &xyz, etc.
54310121 6757 return (wantarray ? (undef, $errmsg) : undef) if $they_blew_it;
2f9daede
TP
6758 select undef, undef, undef, 0.25;
6759 ($a, $b, undef, $c) = &foo; # Ignore third value returned
a0d0e21e 6760
5a964f20
TC
6761Note that this is a unary operator, not a list operator.
6762
a0d0e21e 6763=item unlink LIST
dd184578 6764X<unlink> X<delete> X<remove> X<rm> X<del>
a0d0e21e 6765
54310121 6766=item unlink
bbce6d69 6767
a0d0e21e
LW
6768Deletes a list of files. Returns the number of files successfully
6769deleted.
6770
6771 $cnt = unlink 'a', 'b', 'c';
6772 unlink @goners;
6773 unlink <*.bak>;
6774
c69adce3
SP
6775Note: C<unlink> will not attempt to delete directories unless you are superuser
6776and the B<-U> flag is supplied to Perl. Even if these conditions are
a0d0e21e 6777met, be warned that unlinking a directory can inflict damage on your
c69adce3
SP
6778filesystem. Finally, using C<unlink> on directories is not supported on
6779many operating systems. Use C<rmdir> instead.
a0d0e21e 6780
7660c0ab 6781If LIST is omitted, uses C<$_>.
bbce6d69 6782
a0d0e21e 6783=item unpack TEMPLATE,EXPR
d74e8afc 6784X<unpack>
a0d0e21e 6785
13dcffc6
CS
6786=item unpack TEMPLATE
6787
19799a22 6788C<unpack> does the reverse of C<pack>: it takes a string
2b6c5635 6789and expands it out into a list of values.
19799a22 6790(In scalar context, it returns merely the first value produced.)
2b6c5635 6791
13dcffc6
CS
6792If EXPR is omitted, unpacks the C<$_> string.
6793
2b6c5635
GS
6794The string is broken into chunks described by the TEMPLATE. Each chunk
6795is converted separately to a value. Typically, either the string is a result
f337b084 6796of C<pack>, or the characters of the string represent a C structure of some
2b6c5635
GS
6797kind.
6798
19799a22 6799The TEMPLATE has the same format as in the C<pack> function.
a0d0e21e
LW
6800Here's a subroutine that does substring:
6801
6802 sub substr {
5a964f20 6803 my($what,$where,$howmuch) = @_;
a0d0e21e
LW
6804 unpack("x$where a$howmuch", $what);
6805 }
6806
6807and then there's
6808
f337b084 6809 sub ordinal { unpack("W",$_[0]); } # same as ord()
a0d0e21e 6810
2b6c5635 6811In addition to fields allowed in pack(), you may prefix a field with
61eff3bc
JH
6812a %<number> to indicate that
6813you want a <number>-bit checksum of the items instead of the items
2b6c5635
GS
6814themselves. Default is a 16-bit checksum. Checksum is calculated by
6815summing numeric values of expanded values (for string fields the sum of
6816C<ord($char)> is taken, for bit fields the sum of zeroes and ones).
6817
6818For example, the following
a0d0e21e
LW
6819computes the same number as the System V sum program:
6820
19799a22
GS
6821 $checksum = do {
6822 local $/; # slurp!
f337b084 6823 unpack("%32W*",<>) % 65535;
19799a22 6824 };
a0d0e21e
LW
6825
6826The following efficiently counts the number of set bits in a bit vector:
6827
6828 $setbits = unpack("%32b*", $selectmask);
6829
951ba7fe 6830The C<p> and C<P> formats should be used with care. Since Perl
3160c391
GS
6831has no way of checking whether the value passed to C<unpack()>
6832corresponds to a valid memory location, passing a pointer value that's
6833not known to be valid is likely to have disastrous consequences.
6834
49704364
WL
6835If there are more pack codes or if the repeat count of a field or a group
6836is larger than what the remainder of the input string allows, the result
6837is not well defined: in some cases, the repeat count is decreased, or
6838C<unpack()> will produce null strings or zeroes, or terminate with an
6839error. If the input string is longer than one described by the TEMPLATE,
6840the rest is ignored.
2b6c5635 6841
851646ae 6842See L</pack> for more examples and notes.
5a929a98 6843
98293880 6844=item untie VARIABLE
d74e8afc 6845X<untie>
98293880 6846
19799a22 6847Breaks the binding between a variable and a package. (See C<tie>.)
1188453a 6848Has no effect if the variable is not tied.
98293880 6849
a0d0e21e 6850=item unshift ARRAY,LIST
d74e8afc 6851X<unshift>
a0d0e21e 6852
19799a22 6853Does the opposite of a C<shift>. Or the opposite of a C<push>,
a0d0e21e
LW
6854depending on how you look at it. Prepends list to the front of the
6855array, and returns the new number of elements in the array.
6856
76e4c2bb 6857 unshift(@ARGV, '-e') unless $ARGV[0] =~ /^-/;
a0d0e21e
LW
6858
6859Note the LIST is prepended whole, not one element at a time, so the
19799a22 6860prepended elements stay in the same order. Use C<reverse> to do the
a0d0e21e
LW
6861reverse.
6862
f6c8478c 6863=item use Module VERSION LIST
d74e8afc 6864X<use> X<module> X<import>
f6c8478c
GS
6865
6866=item use Module VERSION
6867
a0d0e21e
LW
6868=item use Module LIST
6869
6870=item use Module
6871
da0045b7 6872=item use VERSION
6873
a0d0e21e
LW
6874Imports some semantics into the current package from the named module,
6875generally by aliasing certain subroutine or variable names into your
6876package. It is exactly equivalent to
6877
6d9d0573 6878 BEGIN { require Module; Module->import( LIST ); }
a0d0e21e 6879
54310121 6880except that Module I<must> be a bareword.
da0045b7 6881
c986422f
RGS
6882In the peculiar C<use VERSION> form, VERSION may be either a numeric
6883argument such as 5.006, which will be compared to C<$]>, or a literal of
6884the form v5.6.1, which will be compared to C<$^V> (aka $PERL_VERSION). A
6885fatal error is produced if VERSION is greater than the version of the
6886current Perl interpreter; Perl will not attempt to parse the rest of the
6887file. Compare with L</require>, which can do a similar check at run time.
6888Symmetrically, C<no VERSION> allows you to specify that you want a version
6889of perl older than the specified one.
3b825e41
RK
6890
6891Specifying VERSION as a literal of the form v5.6.1 should generally be
6892avoided, because it leads to misleading error messages under earlier
2e8342de
RGS
6893versions of Perl (that is, prior to 5.6.0) that do not support this
6894syntax. The equivalent numeric version should be used instead.
fbc891ce 6895
dd629d5b
GS
6896 use v5.6.1; # compile time version check
6897 use 5.6.1; # ditto
3b825e41 6898 use 5.006_001; # ditto; preferred for backwards compatibility
16070b82
GS
6899
6900This is often useful if you need to check the current Perl version before
2e8342de
RGS
6901C<use>ing library modules that won't work with older versions of Perl.
6902(We try not to do this more than we have to.)
da0045b7 6903
c986422f
RGS
6904Also, if the specified perl version is greater than or equal to 5.9.5,
6905C<use VERSION> will also load the C<feature> pragma and enable all
6906features available in the requested version. See L<feature>.
7dfde25d 6907
19799a22 6908The C<BEGIN> forces the C<require> and C<import> to happen at compile time. The
7660c0ab 6909C<require> makes sure the module is loaded into memory if it hasn't been
19799a22
GS
6910yet. The C<import> is not a builtin--it's just an ordinary static method
6911call into the C<Module> package to tell the module to import the list of
a0d0e21e 6912features back into the current package. The module can implement its
19799a22
GS
6913C<import> method any way it likes, though most modules just choose to
6914derive their C<import> method via inheritance from the C<Exporter> class that
6915is defined in the C<Exporter> module. See L<Exporter>. If no C<import>
593b9c14
YST
6916method can be found then the call is skipped, even if there is an AUTOLOAD
6917method.
cb1a09d0 6918
31686daf
JP
6919If you do not want to call the package's C<import> method (for instance,
6920to stop your namespace from being altered), explicitly supply the empty list:
cb1a09d0
AD
6921
6922 use Module ();
6923
6924That is exactly equivalent to
6925
5a964f20 6926 BEGIN { require Module }
a0d0e21e 6927
da0045b7 6928If the VERSION argument is present between Module and LIST, then the
71be2cbc 6929C<use> will call the VERSION method in class Module with the given
6930version as an argument. The default VERSION method, inherited from
44dcb63b 6931the UNIVERSAL class, croaks if the given version is larger than the
b76cc8ba 6932value of the variable C<$Module::VERSION>.
f6c8478c
GS
6933
6934Again, there is a distinction between omitting LIST (C<import> called
6935with no arguments) and an explicit empty LIST C<()> (C<import> not
6936called). Note that there is no comma after VERSION!
da0045b7 6937
a0d0e21e
LW
6938Because this is a wide-open interface, pragmas (compiler directives)
6939are also implemented this way. Currently implemented pragmas are:
6940
f3798619 6941 use constant;
4633a7c4 6942 use diagnostics;
f3798619 6943 use integer;
4438c4b7
JH
6944 use sigtrap qw(SEGV BUS);
6945 use strict qw(subs vars refs);
6946 use subs qw(afunc blurfl);
6947 use warnings qw(all);
58c7fc7c 6948 use sort qw(stable _quicksort _mergesort);
a0d0e21e 6949
19799a22 6950Some of these pseudo-modules import semantics into the current
5a964f20
TC
6951block scope (like C<strict> or C<integer>, unlike ordinary modules,
6952which import symbols into the current package (which are effective
6953through the end of the file).
a0d0e21e 6954
19799a22
GS
6955There's a corresponding C<no> command that unimports meanings imported
6956by C<use>, i.e., it calls C<unimport Module LIST> instead of C<import>.
593b9c14
YST
6957It behaves exactly as C<import> does with respect to VERSION, an
6958omitted LIST, empty LIST, or no unimport method being found.
a0d0e21e
LW
6959
6960 no integer;
6961 no strict 'refs';
4438c4b7 6962 no warnings;
a0d0e21e 6963
ac634a9a 6964See L<perlmodlib> for a list of standard modules and pragmas. See L<perlrun>
31686daf
JP
6965for the C<-M> and C<-m> command-line options to perl that give C<use>
6966functionality from the command-line.
a0d0e21e
LW
6967
6968=item utime LIST
d74e8afc 6969X<utime>
a0d0e21e
LW
6970
6971Changes the access and modification times on each file of a list of
6972files. The first two elements of the list must be the NUMERICAL access
6973and modification times, in that order. Returns the number of files
46cdf678 6974successfully changed. The inode change time of each file is set
4bc2a53d 6975to the current time. For example, this code has the same effect as the
a4142048
WL
6976Unix touch(1) command when the files I<already exist> and belong to
6977the user running the program:
a0d0e21e
LW
6978
6979 #!/usr/bin/perl
2c21a326
GA
6980 $atime = $mtime = time;
6981 utime $atime, $mtime, @ARGV;
4bc2a53d
CW
6982
6983Since perl 5.7.2, if the first two elements of the list are C<undef>, then
6984the utime(2) function in the C library will be called with a null second
6985argument. On most systems, this will set the file's access and
6986modification times to the current time (i.e. equivalent to the example
a4142048
WL
6987above) and will even work on other users' files where you have write
6988permission:
c6f7b413
RS
6989
6990 utime undef, undef, @ARGV;
6991
2c21a326
GA
6992Under NFS this will use the time of the NFS server, not the time of
6993the local machine. If there is a time synchronization problem, the
6994NFS server and local machine will have different times. The Unix
6995touch(1) command will in fact normally use this form instead of the
6996one shown in the first example.
6997
6998Note that only passing one of the first two elements as C<undef> will
6999be equivalent of passing it as 0 and will not have the same effect as
7000described when they are both C<undef>. This case will also trigger an
7001uninitialized warning.
7002
e96b369d
GA
7003On systems that support futimes, you might pass file handles among the
7004files. On systems that don't support futimes, passing file handles
345da378
GA
7005produces a fatal error at run time. The file handles must be passed
7006as globs or references to be recognized. Barewords are considered
7007file names.
e96b369d 7008
aa689395 7009=item values HASH
d74e8afc 7010X<values>
a0d0e21e 7011
aeedbbed
NC
7012=item values ARRAY
7013
7014Returns a list consisting of all the values of the named hash, or the values
7015of an array. (In a scalar context, returns the number of values.)
504f80c1
JH
7016
7017The values are returned in an apparently random order. The actual
7018random order is subject to change in future versions of perl, but it
7019is guaranteed to be the same order as either the C<keys> or C<each>
4546b9e6
JH
7020function would produce on the same (unmodified) hash. Since Perl
70215.8.1 the ordering is different even between different runs of Perl
7022for security reasons (see L<perlsec/"Algorithmic Complexity Attacks">).
504f80c1 7023
aeedbbed
NC
7024As a side effect, calling values() resets the HASH or ARRAY's internal
7025iterator,
2f65b2f0 7026see L</each>. (In particular, calling values() in void context resets
aeedbbed
NC
7027the iterator with no other overhead. Apart from resetting the iterator,
7028C<values @array> in list context is no different to plain C<@array>.
7029We recommend that you use void context C<keys @array> for this, but reasoned
7030that it taking C<values @array> out would require more documentation than
7031leaving it in.)
7032
ab192400 7033
8ea1e5d4
GS
7034Note that the values are not copied, which means modifying them will
7035modify the contents of the hash:
2b5ab1e7 7036
8ea1e5d4
GS
7037 for (values %hash) { s/foo/bar/g } # modifies %hash values
7038 for (@hash{keys %hash}) { s/foo/bar/g } # same
2b5ab1e7 7039
19799a22 7040See also C<keys>, C<each>, and C<sort>.
a0d0e21e
LW
7041
7042=item vec EXPR,OFFSET,BITS
d74e8afc 7043X<vec> X<bit> X<bit vector>
a0d0e21e 7044
e69129f1
GS
7045Treats the string in EXPR as a bit vector made up of elements of
7046width BITS, and returns the value of the element specified by OFFSET
7047as an unsigned integer. BITS therefore specifies the number of bits
7048that are reserved for each element in the bit vector. This must
7049be a power of two from 1 to 32 (or 64, if your platform supports
7050that).
c5a0f51a 7051
b76cc8ba 7052If BITS is 8, "elements" coincide with bytes of the input string.
c73032f5
IZ
7053
7054If BITS is 16 or more, bytes of the input string are grouped into chunks
7055of size BITS/8, and each group is converted to a number as with
b1866b2d 7056pack()/unpack() with big-endian formats C<n>/C<N> (and analogously
c73032f5
IZ
7057for BITS==64). See L<"pack"> for details.
7058
7059If bits is 4 or less, the string is broken into bytes, then the bits
7060of each byte are broken into 8/BITS groups. Bits of a byte are
7061numbered in a little-endian-ish way, as in C<0x01>, C<0x02>,
7062C<0x04>, C<0x08>, C<0x10>, C<0x20>, C<0x40>, C<0x80>. For example,
7063breaking the single input byte C<chr(0x36)> into two groups gives a list
7064C<(0x6, 0x3)>; breaking it into 4 groups gives C<(0x2, 0x1, 0x3, 0x0)>.
7065
81e118e0
JH
7066C<vec> may also be assigned to, in which case parentheses are needed
7067to give the expression the correct precedence as in
22dc801b 7068
7069 vec($image, $max_x * $x + $y, 8) = 3;
a0d0e21e 7070
fe58ced6
MG
7071If the selected element is outside the string, the value 0 is returned.
7072If an element off the end of the string is written to, Perl will first
7073extend the string with sufficiently many zero bytes. It is an error
7074to try to write off the beginning of the string (i.e. negative OFFSET).
fac70343 7075
2575c402
JW
7076If the string happens to be encoded as UTF-8 internally (and thus has
7077the UTF8 flag set), this is ignored by C<vec>, and it operates on the
7078internal byte string, not the conceptual character string, even if you
7079only have characters with values less than 256.
246fae53 7080
fac70343
GS
7081Strings created with C<vec> can also be manipulated with the logical
7082operators C<|>, C<&>, C<^>, and C<~>. These operators will assume a bit
7083vector operation is desired when both operands are strings.
c5a0f51a 7084See L<perlop/"Bitwise String Operators">.
a0d0e21e 7085
7660c0ab 7086The following code will build up an ASCII string saying C<'PerlPerlPerl'>.
19799a22 7087The comments show the string after each step. Note that this code works
cca87523
GS
7088in the same way on big-endian or little-endian machines.
7089
7090 my $foo = '';
7091 vec($foo, 0, 32) = 0x5065726C; # 'Perl'
e69129f1
GS
7092
7093 # $foo eq "Perl" eq "\x50\x65\x72\x6C", 32 bits
7094 print vec($foo, 0, 8); # prints 80 == 0x50 == ord('P')
7095
cca87523
GS
7096 vec($foo, 2, 16) = 0x5065; # 'PerlPe'
7097 vec($foo, 3, 16) = 0x726C; # 'PerlPerl'
7098 vec($foo, 8, 8) = 0x50; # 'PerlPerlP'
7099 vec($foo, 9, 8) = 0x65; # 'PerlPerlPe'
7100 vec($foo, 20, 4) = 2; # 'PerlPerlPe' . "\x02"
f86cebdf
GS
7101 vec($foo, 21, 4) = 7; # 'PerlPerlPer'
7102 # 'r' is "\x72"
cca87523
GS
7103 vec($foo, 45, 2) = 3; # 'PerlPerlPer' . "\x0c"
7104 vec($foo, 93, 1) = 1; # 'PerlPerlPer' . "\x2c"
f86cebdf
GS
7105 vec($foo, 94, 1) = 1; # 'PerlPerlPerl'
7106 # 'l' is "\x6c"
cca87523 7107
19799a22 7108To transform a bit vector into a string or list of 0's and 1's, use these:
a0d0e21e
LW
7109
7110 $bits = unpack("b*", $vector);
7111 @bits = split(//, unpack("b*", $vector));
7112
7660c0ab 7113If you know the exact length in bits, it can be used in place of the C<*>.
a0d0e21e 7114
e69129f1
GS
7115Here is an example to illustrate how the bits actually fall in place:
7116
7117 #!/usr/bin/perl -wl
7118
7119 print <<'EOT';
b76cc8ba 7120 0 1 2 3
e69129f1
GS
7121 unpack("V",$_) 01234567890123456789012345678901
7122 ------------------------------------------------------------------
7123 EOT
7124
7125 for $w (0..3) {
7126 $width = 2**$w;
7127 for ($shift=0; $shift < $width; ++$shift) {
7128 for ($off=0; $off < 32/$width; ++$off) {
7129 $str = pack("B*", "0"x32);
7130 $bits = (1<<$shift);
7131 vec($str, $off, $width) = $bits;
7132 $res = unpack("b*",$str);
7133 $val = unpack("V", $str);
7134 write;
7135 }
7136 }
7137 }
7138
7139 format STDOUT =
7140 vec($_,@#,@#) = @<< == @######### @>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
7141 $off, $width, $bits, $val, $res
7142 .
7143 __END__
7144
7145Regardless of the machine architecture on which it is run, the above
7146example should print the following table:
7147
b76cc8ba 7148 0 1 2 3
e69129f1
GS
7149 unpack("V",$_) 01234567890123456789012345678901
7150 ------------------------------------------------------------------
7151 vec($_, 0, 1) = 1 == 1 10000000000000000000000000000000
7152 vec($_, 1, 1) = 1 == 2 01000000000000000000000000000000
7153 vec($_, 2, 1) = 1 == 4 00100000000000000000000000000000
7154 vec($_, 3, 1) = 1 == 8 00010000000000000000000000000000
7155 vec($_, 4, 1) = 1 == 16 00001000000000000000000000000000
7156 vec($_, 5, 1) = 1 == 32 00000100000000000000000000000000
7157 vec($_, 6, 1) = 1 == 64 00000010000000000000000000000000
7158 vec($_, 7, 1) = 1 == 128 00000001000000000000000000000000
7159 vec($_, 8, 1) = 1 == 256 00000000100000000000000000000000
7160 vec($_, 9, 1) = 1 == 512 00000000010000000000000000000000
7161 vec($_,10, 1) = 1 == 1024 00000000001000000000000000000000
7162 vec($_,11, 1) = 1 == 2048 00000000000100000000000000000000
7163 vec($_,12, 1) = 1 == 4096 00000000000010000000000000000000
7164 vec($_,13, 1) = 1 == 8192 00000000000001000000000000000000
7165 vec($_,14, 1) = 1 == 16384 00000000000000100000000000000000
7166 vec($_,15, 1) = 1 == 32768 00000000000000010000000000000000
7167 vec($_,16, 1) = 1 == 65536 00000000000000001000000000000000
7168 vec($_,17, 1) = 1 == 131072 00000000000000000100000000000000
7169 vec($_,18, 1) = 1 == 262144 00000000000000000010000000000000
7170 vec($_,19, 1) = 1 == 524288 00000000000000000001000000000000
7171 vec($_,20, 1) = 1 == 1048576 00000000000000000000100000000000
7172 vec($_,21, 1) = 1 == 2097152 00000000000000000000010000000000
7173 vec($_,22, 1) = 1 == 4194304 00000000000000000000001000000000
7174 vec($_,23, 1) = 1 == 8388608 00000000000000000000000100000000
7175 vec($_,24, 1) = 1 == 16777216 00000000000000000000000010000000
7176 vec($_,25, 1) = 1 == 33554432 00000000000000000000000001000000
7177 vec($_,26, 1) = 1 == 67108864 00000000000000000000000000100000
7178 vec($_,27, 1) = 1 == 134217728 00000000000000000000000000010000
7179 vec($_,28, 1) = 1 == 268435456 00000000000000000000000000001000
7180 vec($_,29, 1) = 1 == 536870912 00000000000000000000000000000100
7181 vec($_,30, 1) = 1 == 1073741824 00000000000000000000000000000010
7182 vec($_,31, 1) = 1 == 2147483648 00000000000000000000000000000001
7183 vec($_, 0, 2) = 1 == 1 10000000000000000000000000000000
7184 vec($_, 1, 2) = 1 == 4 00100000000000000000000000000000
7185 vec($_, 2, 2) = 1 == 16 00001000000000000000000000000000
7186 vec($_, 3, 2) = 1 == 64 00000010000000000000000000000000
7187 vec($_, 4, 2) = 1 == 256 00000000100000000000000000000000
7188 vec($_, 5, 2) = 1 == 1024 00000000001000000000000000000000
7189 vec($_, 6, 2) = 1 == 4096 00000000000010000000000000000000
7190 vec($_, 7, 2) = 1 == 16384 00000000000000100000000000000000
7191 vec($_, 8, 2) = 1 == 65536 00000000000000001000000000000000
7192 vec($_, 9, 2) = 1 == 262144 00000000000000000010000000000000
7193 vec($_,10, 2) = 1 == 1048576 00000000000000000000100000000000
7194 vec($_,11, 2) = 1 == 4194304 00000000000000000000001000000000
7195 vec($_,12, 2) = 1 == 16777216 00000000000000000000000010000000
7196 vec($_,13, 2) = 1 == 67108864 00000000000000000000000000100000
7197 vec($_,14, 2) = 1 == 268435456 00000000000000000000000000001000
7198 vec($_,15, 2) = 1 == 1073741824 00000000000000000000000000000010
7199 vec($_, 0, 2) = 2 == 2 01000000000000000000000000000000
7200 vec($_, 1, 2) = 2 == 8 00010000000000000000000000000000
7201 vec($_, 2, 2) = 2 == 32 00000100000000000000000000000000
7202 vec($_, 3, 2) = 2 == 128 00000001000000000000000000000000
7203 vec($_, 4, 2) = 2 == 512 00000000010000000000000000000000
7204 vec($_, 5, 2) = 2 == 2048 00000000000100000000000000000000
7205 vec($_, 6, 2) = 2 == 8192 00000000000001000000000000000000
7206 vec($_, 7, 2) = 2 == 32768 00000000000000010000000000000000
7207 vec($_, 8, 2) = 2 == 131072 00000000000000000100000000000000
7208 vec($_, 9, 2) = 2 == 524288 00000000000000000001000000000000
7209 vec($_,10, 2) = 2 == 2097152 00000000000000000000010000000000
7210 vec($_,11, 2) = 2 == 8388608 00000000000000000000000100000000
7211 vec($_,12, 2) = 2 == 33554432 00000000000000000000000001000000
7212 vec($_,13, 2) = 2 == 134217728 00000000000000000000000000010000
7213 vec($_,14, 2) = 2 == 536870912 00000000000000000000000000000100
7214 vec($_,15, 2) = 2 == 2147483648 00000000000000000000000000000001
7215 vec($_, 0, 4) = 1 == 1 10000000000000000000000000000000
7216 vec($_, 1, 4) = 1 == 16 00001000000000000000000000000000
7217 vec($_, 2, 4) = 1 == 256 00000000100000000000000000000000
7218 vec($_, 3, 4) = 1 == 4096 00000000000010000000000000000000
7219 vec($_, 4, 4) = 1 == 65536 00000000000000001000000000000000
7220 vec($_, 5, 4) = 1 == 1048576 00000000000000000000100000000000
7221 vec($_, 6, 4) = 1 == 16777216 00000000000000000000000010000000
7222 vec($_, 7, 4) = 1 == 268435456 00000000000000000000000000001000
7223 vec($_, 0, 4) = 2 == 2 01000000000000000000000000000000
7224 vec($_, 1, 4) = 2 == 32 00000100000000000000000000000000
7225 vec($_, 2, 4) = 2 == 512 00000000010000000000000000000000
7226 vec($_, 3, 4) = 2 == 8192 00000000000001000000000000000000
7227 vec($_, 4, 4) = 2 == 131072 00000000000000000100000000000000
7228 vec($_, 5, 4) = 2 == 2097152 00000000000000000000010000000000
7229 vec($_, 6, 4) = 2 == 33554432 00000000000000000000000001000000
7230 vec($_, 7, 4) = 2 == 536870912 00000000000000000000000000000100
7231 vec($_, 0, 4) = 4 == 4 00100000000000000000000000000000
7232 vec($_, 1, 4) = 4 == 64 00000010000000000000000000000000
7233 vec($_, 2, 4) = 4 == 1024 00000000001000000000000000000000
7234 vec($_, 3, 4) = 4 == 16384 00000000000000100000000000000000
7235 vec($_, 4, 4) = 4 == 262144 00000000000000000010000000000000
7236 vec($_, 5, 4) = 4 == 4194304 00000000000000000000001000000000
7237 vec($_, 6, 4) = 4 == 67108864 00000000000000000000000000100000
7238 vec($_, 7, 4) = 4 == 1073741824 00000000000000000000000000000010
7239 vec($_, 0, 4) = 8 == 8 00010000000000000000000000000000
7240 vec($_, 1, 4) = 8 == 128 00000001000000000000000000000000
7241 vec($_, 2, 4) = 8 == 2048 00000000000100000000000000000000
7242 vec($_, 3, 4) = 8 == 32768 00000000000000010000000000000000
7243 vec($_, 4, 4) = 8 == 524288 00000000000000000001000000000000
7244 vec($_, 5, 4) = 8 == 8388608 00000000000000000000000100000000
7245 vec($_, 6, 4) = 8 == 134217728 00000000000000000000000000010000
7246 vec($_, 7, 4) = 8 == 2147483648 00000000000000000000000000000001
7247 vec($_, 0, 8) = 1 == 1 10000000000000000000000000000000
7248 vec($_, 1, 8) = 1 == 256 00000000100000000000000000000000
7249 vec($_, 2, 8) = 1 == 65536 00000000000000001000000000000000
7250 vec($_, 3, 8) = 1 == 16777216 00000000000000000000000010000000
7251 vec($_, 0, 8) = 2 == 2 01000000000000000000000000000000
7252 vec($_, 1, 8) = 2 == 512 00000000010000000000000000000000
7253 vec($_, 2, 8) = 2 == 131072 00000000000000000100000000000000
7254 vec($_, 3, 8) = 2 == 33554432 00000000000000000000000001000000
7255 vec($_, 0, 8) = 4 == 4 00100000000000000000000000000000
7256 vec($_, 1, 8) = 4 == 1024 00000000001000000000000000000000
7257 vec($_, 2, 8) = 4 == 262144 00000000000000000010000000000000
7258 vec($_, 3, 8) = 4 == 67108864 00000000000000000000000000100000
7259 vec($_, 0, 8) = 8 == 8 00010000000000000000000000000000
7260 vec($_, 1, 8) = 8 == 2048 00000000000100000000000000000000
7261 vec($_, 2, 8) = 8 == 524288 00000000000000000001000000000000
7262 vec($_, 3, 8) = 8 == 134217728 00000000000000000000000000010000
7263 vec($_, 0, 8) = 16 == 16 00001000000000000000000000000000
7264 vec($_, 1, 8) = 16 == 4096 00000000000010000000000000000000
7265 vec($_, 2, 8) = 16 == 1048576 00000000000000000000100000000000
7266 vec($_, 3, 8) = 16 == 268435456 00000000000000000000000000001000
7267 vec($_, 0, 8) = 32 == 32 00000100000000000000000000000000
7268 vec($_, 1, 8) = 32 == 8192 00000000000001000000000000000000
7269 vec($_, 2, 8) = 32 == 2097152 00000000000000000000010000000000
7270 vec($_, 3, 8) = 32 == 536870912 00000000000000000000000000000100
7271 vec($_, 0, 8) = 64 == 64 00000010000000000000000000000000
7272 vec($_, 1, 8) = 64 == 16384 00000000000000100000000000000000
7273 vec($_, 2, 8) = 64 == 4194304 00000000000000000000001000000000
7274 vec($_, 3, 8) = 64 == 1073741824 00000000000000000000000000000010
7275 vec($_, 0, 8) = 128 == 128 00000001000000000000000000000000
7276 vec($_, 1, 8) = 128 == 32768 00000000000000010000000000000000
7277 vec($_, 2, 8) = 128 == 8388608 00000000000000000000000100000000
7278 vec($_, 3, 8) = 128 == 2147483648 00000000000000000000000000000001
7279
a0d0e21e 7280=item wait
d74e8afc 7281X<wait>
a0d0e21e 7282
2b5ab1e7
TC
7283Behaves like the wait(2) system call on your system: it waits for a child
7284process to terminate and returns the pid of the deceased process, or
e5218da5 7285C<-1> if there are no child processes. The status is returned in C<$?>
eadb07ed 7286and C<{^CHILD_ERROR_NATIVE}>.
2b5ab1e7
TC
7287Note that a return value of C<-1> could mean that child processes are
7288being automatically reaped, as described in L<perlipc>.
a0d0e21e
LW
7289
7290=item waitpid PID,FLAGS
d74e8afc 7291X<waitpid>
a0d0e21e 7292
2b5ab1e7
TC
7293Waits for a particular child process to terminate and returns the pid of
7294the deceased process, or C<-1> if there is no such child process. On some
7295systems, a value of 0 indicates that there are processes still running.
eadb07ed 7296The status is returned in C<$?> and C<{^CHILD_ERROR_NATIVE}>. If you say
a0d0e21e 7297
5f05dabc 7298 use POSIX ":sys_wait_h";
5a964f20 7299 #...
b76cc8ba 7300 do {
2ac1ef3d 7301 $kid = waitpid(-1, WNOHANG);
84b74420 7302 } while $kid > 0;
a0d0e21e 7303
2b5ab1e7
TC
7304then you can do a non-blocking wait for all pending zombie processes.
7305Non-blocking wait is available on machines supporting either the
7306waitpid(2) or wait4(2) system calls. However, waiting for a particular
7307pid with FLAGS of C<0> is implemented everywhere. (Perl emulates the
7308system call by remembering the status values of processes that have
7309exited but have not been harvested by the Perl script yet.)
a0d0e21e 7310
2b5ab1e7
TC
7311Note that on some systems, a return value of C<-1> could mean that child
7312processes are being automatically reaped. See L<perlipc> for details,
7313and for other examples.
5a964f20 7314
a0d0e21e 7315=item wantarray
d74e8afc 7316X<wantarray> X<context>
a0d0e21e 7317
cc37eb0b 7318Returns true if the context of the currently executing subroutine or
20f13e4a 7319C<eval> is looking for a list value. Returns false if the context is
cc37eb0b
RGS
7320looking for a scalar. Returns the undefined value if the context is
7321looking for no value (void context).
a0d0e21e 7322
54310121 7323 return unless defined wantarray; # don't bother doing more
7324 my @a = complex_calculation();
7325 return wantarray ? @a : "@a";
a0d0e21e 7326
20f13e4a 7327C<wantarray()>'s result is unspecified in the top level of a file,
3c10abe3
AG
7328in a C<BEGIN>, C<UNITCHECK>, C<CHECK>, C<INIT> or C<END> block, or
7329in a C<DESTROY> method.
20f13e4a 7330
19799a22
GS
7331This function should have been named wantlist() instead.
7332
a0d0e21e 7333=item warn LIST
d74e8afc 7334X<warn> X<warning> X<STDERR>
a0d0e21e 7335
2d6d0015 7336Prints the value of LIST to STDERR. If the last element of LIST does
afd8c9c8
DM
7337not end in a newline, it appends the same file/line number text as C<die>
7338does.
774d564b 7339
7660c0ab
A
7340If LIST is empty and C<$@> already contains a value (typically from a
7341previous eval) that value is used after appending C<"\t...caught">
19799a22
GS
7342to C<$@>. This is useful for staying almost, but not entirely similar to
7343C<die>.
43051805 7344
7660c0ab 7345If C<$@> is empty then the string C<"Warning: Something's wrong"> is used.
43051805 7346
774d564b 7347No message is printed if there is a C<$SIG{__WARN__}> handler
7348installed. It is the handler's responsibility to deal with the message
19799a22 7349as it sees fit (like, for instance, converting it into a C<die>). Most
774d564b 7350handlers must therefore make arrangements to actually display the
19799a22 7351warnings that they are not prepared to deal with, by calling C<warn>
774d564b 7352again in the handler. Note that this is quite safe and will not
7353produce an endless loop, since C<__WARN__> hooks are not called from
7354inside one.
7355
7356You will find this behavior is slightly different from that of
7357C<$SIG{__DIE__}> handlers (which don't suppress the error text, but can
19799a22 7358instead call C<die> again to change it).
774d564b 7359
7360Using a C<__WARN__> handler provides a powerful way to silence all
7361warnings (even the so-called mandatory ones). An example:
7362
7363 # wipe out *all* compile-time warnings
7364 BEGIN { $SIG{'__WARN__'} = sub { warn $_[0] if $DOWARN } }
7365 my $foo = 10;
7366 my $foo = 20; # no warning about duplicate my $foo,
7367 # but hey, you asked for it!
7368 # no compile-time or run-time warnings before here
7369 $DOWARN = 1;
7370
7371 # run-time warnings enabled after here
7372 warn "\$foo is alive and $foo!"; # does show up
7373
7374See L<perlvar> for details on setting C<%SIG> entries, and for more
2b5ab1e7
TC
7375examples. See the Carp module for other kinds of warnings using its
7376carp() and cluck() functions.
a0d0e21e
LW
7377
7378=item write FILEHANDLE
d74e8afc 7379X<write>
a0d0e21e
LW
7380
7381=item write EXPR
7382
7383=item write
7384
5a964f20 7385Writes a formatted record (possibly multi-line) to the specified FILEHANDLE,
a0d0e21e 7386using the format associated with that file. By default the format for
54310121 7387a file is the one having the same name as the filehandle, but the
19799a22 7388format for the current output channel (see the C<select> function) may be set
184e9718 7389explicitly by assigning the name of the format to the C<$~> variable.
a0d0e21e
LW
7390
7391Top of form processing is handled automatically: if there is
7392insufficient room on the current page for the formatted record, the
7393page is advanced by writing a form feed, a special top-of-page format
7394is used to format the new page header, and then the record is written.
7395By default the top-of-page format is the name of the filehandle with
7396"_TOP" appended, but it may be dynamically set to the format of your
184e9718 7397choice by assigning the name to the C<$^> variable while the filehandle is
a0d0e21e 7398selected. The number of lines remaining on the current page is in
7660c0ab 7399variable C<$->, which can be set to C<0> to force a new page.
a0d0e21e
LW
7400
7401If FILEHANDLE is unspecified, output goes to the current default output
7402channel, which starts out as STDOUT but may be changed by the
19799a22 7403C<select> operator. If the FILEHANDLE is an EXPR, then the expression
a0d0e21e
LW
7404is evaluated and the resulting string is used to look up the name of
7405the FILEHANDLE at run time. For more on formats, see L<perlform>.
7406
19799a22 7407Note that write is I<not> the opposite of C<read>. Unfortunately.
a0d0e21e
LW
7408
7409=item y///
7410
7660c0ab 7411The transliteration operator. Same as C<tr///>. See L<perlop>.
a0d0e21e
LW
7412
7413=back