- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 1221 - 1230 of 1,302 for label:perl (0.09 sec)
-
fork.txt
=over =item fork X<fork> X<child> X<parent> Does a L<fork(2)> system call to create a new process running the same program at the same point. It returns the child pid to the parent process, C<0> to...perldoc.perl.org/functions/fork.txtRegistered: Tue Feb 18 10:54:59 UTC 2025 - 2K bytes - Viewed (0) -
continue.txt
=over =item continue BLOCK X<continue> =item continue When followed by a BLOCK, L<C<continue>|/continue BLOCK> is actually a flow control statement rather than a function. If there is a L<C<continu...perldoc.perl.org/functions/continue.txtRegistered: Tue Feb 18 12:28:15 UTC 2025 - 1.9K bytes - Viewed (0) -
write.txt
=over =item write FILEHANDLE X<write> =item write EXPR =item write Writes a formatted record (possibly multi-line) to the specified FILEHANDLE, using the format associated with that file. By defaul...perldoc.perl.org/functions/write.txtRegistered: Tue Feb 18 10:31:48 UTC 2025 - 1.7K bytes - Viewed (0) -
tell.txt
=over =item tell FILEHANDLE X<tell> =item tell Returns the current position I<in bytes> for FILEHANDLE, or -1 on error. FILEHANDLE may be an expression whose value gives the name of the actual file...perldoc.perl.org/functions/tell.txtRegistered: Tue Feb 18 12:06:11 UTC 2025 - 1.4K bytes - Viewed (0) -
msgrcv.txt
=over =item msgrcv ID,VAR,SIZE,TYPE,FLAGS X<msgrcv> Calls the System V IPC function msgrcv to receive a message from message queue ID into variable VAR with a maximum message size of SIZE. Note tha...perldoc.perl.org/functions/msgrcv.txtRegistered: Tue Feb 18 11:52:34 UTC 2025 - 615 bytes - Viewed (0) -
lock.txt
=over =item lock THING X<lock> This function places an advisory lock on a shared variable or referenced object contained in I<THING> until the lock goes out of scope. The value returned is the scal...perldoc.perl.org/functions/lock.txtRegistered: Tue Feb 18 11:58:39 UTC 2025 - 565 bytes - Viewed (0) -
connect.txt
=over =item connect SOCKET,NAME X<connect> Attempts to connect to a remote socket, just like L<connect(2)>. Returns true if it succeeded, false otherwise. NAME should be a packed address of the app...perldoc.perl.org/functions/connect.txtRegistered: Tue Feb 18 11:36:12 UTC 2025 - 308 bytes - Viewed (0) -
readlink.txt
=over =item readlink EXPR X<readlink> =item readlink Returns the value of a symbolic link, if symbolic links are implemented. If not, raises an exception. If there is a system error, returns the un...perldoc.perl.org/functions/readlink.txtRegistered: Tue Feb 18 10:25:51 UTC 2025 - 349 bytes - Viewed (0) -
return.txt
=over =item return EXPR X<return> =item return Returns from a subroutine, L<C<eval>|/eval EXPR>, L<C<do FILE>|/do EXPR>, L<C<sort>|/sort SUBNAME LIST> block or regex eval block (but not a L<C<grep>...perldoc.perl.org/functions/return.txtRegistered: Tue Feb 18 14:59:25 UTC 2025 - 1K bytes - Viewed (0) -
rename.txt
=over =item rename OLDNAME,NEWNAME X<rename> X<move> X<mv> X<ren> Changes the name of a file; an existing file NEWNAME will be clobbered. Returns true for success; on failure returns false and sets...perldoc.perl.org/functions/rename.txtRegistered: Tue Feb 18 13:03:57 UTC 2025 - 787 bytes - Viewed (0)