- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 931 - 940 of 1,302 for label:perl (0.03 sec)
-
study.txt
=over =item study SCALAR X<study> =item study At this time, C<study> does nothing. This may change in the future. Prior to Perl version 5.16, it would create an inverted index of all characters tha...perldoc.perl.org/functions/study.txtRegistered: Sun Mar 09 07:33:45 UTC 2025 - 476 bytes - Viewed (0) -
symlink.txt
=over =item symlink OLDFILE,NEWFILE X<symlink> X<link> X<symbolic link> X<link, symbolic> Creates a new filename symbolically linked to the old filename. Returns C<1> for success, C<0> otherwise. O...perldoc.perl.org/functions/symlink.txtRegistered: Sun Mar 09 09:19:51 UTC 2025 - 398 bytes - Viewed (0) -
link.txt
=over =item link OLDFILE,NEWFILE X<link> Creates a new filename linked to the old filename. Returns true for success, false otherwise. Portability issues: L<perlport/link>. =back 183perldoc.perl.org/functions/link.txtRegistered: Sun Mar 09 05:02:10 UTC 2025 - 183 bytes - Viewed (0) -
die.txt
=over =item die LIST X<die> X<throw> X<exception> X<raise> X<$@> X<abort> L<C<die>|/die LIST> raises an exception. Inside an L<C<eval>|/eval EXPR> the exception is stuffed into L<C<$@>|perlvar/$@> ...perldoc.perl.org/functions/die.txtRegistered: Sun Mar 09 10:17:17 UTC 2025 - 5.9K bytes - Viewed (0) -
select.txt
=over =item select FILEHANDLE X<select> X<filehandle, default> =item select Returns the currently selected filehandle. If FILEHANDLE is supplied, sets the new current default filehandle for output....perldoc.perl.org/functions/select.txtRegistered: Sun Mar 09 09:57:32 UTC 2025 - 4.6K bytes - Viewed (0) -
goto.txt
=over =item goto LABEL X<goto> X<jump> X<jmp> =item goto EXPR =item goto &NAME The C<goto LABEL> form finds the statement labeled with LABEL and resumes execution there. It can't be used to get out...perldoc.perl.org/functions/goto.txtRegistered: Sun Mar 09 11:59:00 UTC 2025 - 3.1K bytes - Viewed (0) -
umask.txt
=over =item umask EXPR X<umask> =item umask Sets the umask for the process to EXPR and returns the previous value. If EXPR is omitted, merely returns the current umask. The Unix permission C<rwxr-x...perldoc.perl.org/functions/umask.txtRegistered: Sun Mar 09 10:54:11 UTC 2025 - 2.1K bytes - Viewed (0) -
print.txt
=over =item print FILEHANDLE LIST X<print> =item print FILEHANDLE =item print LIST =item print Prints a string or a list of strings. Returns true if successful. FILEHANDLE may be a scalar variable ...perldoc.perl.org/functions/print.txtRegistered: Sun Mar 09 10:38:30 UTC 2025 - 2K bytes - Viewed (0) -
syscall.txt
=over =item syscall NUMBER, LIST X<syscall> X<system call> Calls the system call specified as the first element of the list, passing the remaining elements as arguments to the system call. If unimp...perldoc.perl.org/functions/syscall.txtRegistered: Sun Mar 09 10:04:45 UTC 2025 - 1.9K bytes - Viewed (0) -
pop.txt
=over =item pop ARRAY X<pop> X<stack> =item pop Removes and returns the B<last> element of the array, shortening the array by one element. my @arr = ('cat', 'dog', 'mouse'); my $item = pop(@arr); #...perldoc.perl.org/functions/pop.txtRegistered: Sun Mar 09 09:42:29 UTC 2025 - 902 bytes - Viewed (0)