Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 1511 - 1520 of 3,197 for filetype:txt (0.05 sec)

  1. 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.txt
    Registered: Thu Nov 21 00:55:28 UTC 2024
    - 787 bytes
    - Viewed (0)
  2. shmctl.txt

    =over =item shmctl ID,CMD,ARG X<shmctl> Calls the System V IPC function shmctl. You'll probably have to say use IPC::SysV; first to get the correct constant definitions. If CMD is C<IPC_STAT>, then...
    perldoc.perl.org/functions/shmctl.txt
    Registered: Thu Nov 21 09:32:34 UTC 2024
    - 534 bytes
    - Viewed (0)
  3. join.txt

    =over =item join EXPR,LIST X<join> Joins the separate strings of LIST into a single string with fields separated by the value of EXPR, and returns that new string. Example: my $rec = join(':', $log...
    perldoc.perl.org/functions/join.txt
    Registered: Thu Nov 21 01:17:47 UTC 2024
    - 455 bytes
    - Viewed (0)
  4. break.txt

    =over =item break Break out of a C<given> block. L<C<break>|/break> is available only if the L<C<"switch"> feature|feature/The 'switch' feature> is enabled or if it is prefixed with C<CORE::>. The ...
    perldoc.perl.org/functions/break.txt
    Registered: Thu Nov 21 06:19:16 UTC 2024
    - 349 bytes
    - Viewed (0)
  5. __PACKAGE__.txt

    =over =item __PACKAGE__ X<__PACKAGE__> A special token that returns the name of the package in which it occurs. =back 120
    perldoc.perl.org/functions/__PACKAGE__.txt
    Registered: Thu Nov 21 08:56:28 UTC 2024
    - 120 bytes
    - Viewed (0)
  6. our.txt

    =over =item our VARLIST X<our> X<global> =item our TYPE VARLIST =item our VARLIST : ATTRS =item our TYPE VARLIST : ATTRS L<C<our>|/our VARLIST> makes a lexical alias to a package (i.e. global) vari...
    perldoc.perl.org/functions/our.txt
    Registered: Thu Nov 21 14:23:15 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. 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.txt
    Registered: Thu Nov 21 13:37:50 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. 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.txt
    Registered: Thu Nov 21 13:04:47 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. readpipe.txt

    =over =item readpipe EXPR =item readpipe X<readpipe> EXPR is executed as a system command. The collected standard output of the command is returned. In scalar context, it comes back as a single (po...
    perldoc.perl.org/functions/readpipe.txt
    Registered: Thu Nov 21 09:52:57 UTC 2024
    - 622 bytes
    - Viewed (0)
  10. 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.txt
    Registered: Thu Nov 21 10:26:51 UTC 2024
    - 615 bytes
    - Viewed (0)
Back to top