NAME

Ekps9566 - Run-time routines for KPS9566.pm

SYNOPSIS

  use Ekps9566;

    Ekps9566::split(...);
    Ekps9566::tr(...);
    Ekps9566::chop(...);
    Ekps9566::index(...);
    Ekps9566::rindex(...);
    Ekps9566::lc(...);
    Ekps9566::lc_;
    Ekps9566::lcfirst(...);
    Ekps9566::lcfirst_;
    Ekps9566::uc(...);
    Ekps9566::uc_;
    Ekps9566::ucfirst(...);
    Ekps9566::ucfirst_;
    Ekps9566::fc(...);
    Ekps9566::fc_;
    Ekps9566::ignorecase(...);
    Ekps9566::capture(...);
    Ekps9566::chr(...);
    Ekps9566::chr_;
    Ekps9566::X ...;
    Ekps9566::X_;
    Ekps9566::glob(...);
    Ekps9566::glob_;
    Ekps9566::lstat(...);
    Ekps9566::lstat_;
    Ekps9566::opendir(...);
    Ekps9566::stat(...);
    Ekps9566::stat_;
    Ekps9566::unlink(...);
    Ekps9566::chdir(...);
    Ekps9566::do(...);
    Ekps9566::require(...);
    Ekps9566::telldir(...);

  # "no Ekps9566;" not supported

ABSTRACT

This module has run-time routines for use KPS9566 software automatically, you do not have to use.

BUGS AND LIMITATIONS

I have tested and verified this software using the best of my ability. However, a software containing much regular expression is bound to contain some bugs. Thus, if you happen to find a bug that's in KPS9566 software and not your own program, you can try to reduce it to a minimal test case and then report it to the following author's address. If you have an idea that could make this a more useful tool, please let everyone share it.

HISTORY

This Ekps9566 module first appeared in ActivePerl Build 522 Built under MSWin32 Compiled at Nov 2 1999 09:52:28

AUTHOR

INABA Hitoshi <ina@cpan.org>

This project was originated by INABA Hitoshi. For any questions, use <ina@cpan.org> so we can share this file.

LICENSE AND COPYRIGHT

This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

EXAMPLES

  • Split string

      @split = Ekps9566::split(/pattern/,$string,$limit);
      @split = Ekps9566::split(/pattern/,$string);
      @split = Ekps9566::split(/pattern/);
      @split = Ekps9566::split('',$string,$limit);
      @split = Ekps9566::split('',$string);
      @split = Ekps9566::split('');
      @split = Ekps9566::split();
      @split = Ekps9566::split;
    
      This subroutine scans a string given by $string for separators, and splits the
      string into a list of substring, returning the resulting list value in list
      context or the count of substring in scalar context. Scalar context also causes
      split to write its result to @_, but this usage is deprecated. The separators
      are determined by repeated pattern matching, using the regular expression given
      in /pattern/, so the separators may be of any size and need not be the same
      string on every match. (The separators are not ordinarily returned; exceptions
      are discussed later in this section.) If the /pattern/ doesn't match the string
      at all, Ekps9566::split returns the original string as a single substring, If it
      matches once, you get two substrings, and so on. You may supply regular
      expression modifiers to the /pattern/, like /pattern/i, /pattern/x, etc. The
      //m modifier is assumed when you split on the pattern /^/.
    
      If $limit is specified and positive, the subroutine splits into no more than that
      many fields (though it may split into fewer if it runs out of separators). If
      $limit is negative, it is treated as if an arbitrarily large $limit has been
      specified If $limit is omitted or zero, trailing null fields are stripped from
      the result (which potential users of pop would do wel to remember). If $string
      is omitted, the subroutine splits the $_ string. If /pattern/ is also omitted or
      is the literal space, " ", the subroutine split on whitespace, /\s+/, after
      skipping any leading whitespace.
    
      A /pattern/ of /^/ is secretly treated if it it were /^/m, since it isn't much
      use otherwise.
    
      String of any length can be split:
    
      @chars  = Ekps9566::split(//,  $word);
      @fields = Ekps9566::split(/:/, $line);
      @words  = Ekps9566::split(" ", $paragraph);
      @lines  = Ekps9566::split(/^/, $buffer);
    
      A pattern capable of matching either the null string or something longer than
      the null string (for instance, a pattern consisting of any single character
      modified by a * or ?) will split the value of $string into separate characters
      wherever it matches the null string between characters; nonnull matches will
      skip over the matched separator characters in the usual fashion. (In other words,
      a pattern won't match in one spot more than once, even if it matched with a zero
      width.) For example:
    
      print join(":" => Ekps9566::split(/ */, "hi there"));
    
      produces the output "h:i:t:h:e:r:e". The space disappers because it matches
      as part of the separator. As a trivial case, the null pattern // simply splits
      into separate characters, and spaces do not disappear. (For normal pattern
      matches, a // pattern would repeat the last successfully matched pattern, but
      Ekps9566::split's pattern is exempt from that wrinkle.)
    
      The $limit parameter splits only part of a string:
    
      my ($login, $passwd, $remainder) = Ekps9566::split(/:/, $_, 3);
    
      We encourage you to split to lists of names like this to make your code
      self-documenting. (For purposes of error checking, note that $remainder would
      be undefined if there were fewer than three fields.) When assigning to a list,
      if $limit is omitted, Perl supplies a $limit one larger than the number of
      variables in the list, to avoid unneccessary work. For the split above, $limit
      would have been 4 by default, and $remainder would have received only the third
      field, not all the rest of the fields. In time-critical applications, it behooves
      you not to split into more fields than you really need. (The trouble with
      powerful languages it that they let you be powerfully stupid at times.)
    
      We said earlier that the separators are not returned, but if the /pattern/
      contains parentheses, then the substring matched by each pair of parentheses is
      included in the resulting list, interspersed with the fields that are ordinarily
      returned. Here's a simple example:
    
      Ekps9566::split(/([-,])/, "1-10,20");
    
      which produces the list value:
    
      (1, "-", 10, ",", 20)
    
      With more parentheses, a field is returned for each pair, even if some pairs
      don't match, in which case undefined values are returned in those positions. So
      if you say:
    
      Ekps9566::split(/(-)|(,)/, "1-10,20");
    
      you get the value:
    
      (1, "-", undef, 10, undef, ",", 20)
    
      The /pattern/ argument may be replaced with an expression to specify patterns
      that vary at runtime. As with ordinary patterns, to do run-time compilation only
      once, use /$variable/o.
    
      As a special case, if the expression is a single space (" "), the subroutine
      splits on whitespace just as Ekps9566::split with no arguments does. Thus,
      Ekps9566::split(" ") can be used to emulate awk's default behavior. In contrast,
      Ekps9566::split(/ /) will give you as many null initial fields as there are
      leading spaces. (Other than this special case, if you supply a string instead
      of a regular expression, it'll be interpreted as a regular expression anyway.)
      You can use this property to remove leading and trailing whitespace from a
      string and to collapse intervaning stretches of whitespace into a single
      space:
    
      $string = join(" ", Ekps9566::split(" ", $string));
    
      The following example splits an RFC822 message header into a hash containing
      $head{'Date'}, $head{'Subject'}, and so on. It uses the trick of assigning a
      list of pairs to a hash, because separators altinate with separated fields, It
      users parentheses to return part of each separator as part of the returned list
      value. Since the split pattern is guaranteed to return things in pairs by virtue
      of containing one set of parentheses, the hash assignment is guaranteed to
      receive a list consisting of key/value pairs, where each key is the name of a
      header field. (Unfortunately, this technique loses information for multiple lines
      with the same key field, such as Received-By lines. Ah well)
    
      $header =~ s/\n\s+/ /g; # Merge continuation lines.
      %head = ("FRONTSTUFF", Ekps9566::split(/^(\S*?):\s*/m, $header));
    
      The following example processes the entries in a Unix passwd(5) file. You could
      leave out the chomp, in which case $shell would have a newline on the end of it.
    
      open(PASSWD, "/etc/passwd");
      while (<PASSWD>) {
          chomp; # remove trailing newline.
          ($login, $passwd, $uid, $gid, $gcos, $home, $shell) =
              Ekps9566::split(/:/);
          ...
      }
    
      Here's how process each word of each line of each file of input to create a
      word-frequency hash.
    
      while (<>) {
          for my $word (Ekps9566::split()) {
              $count{$word}++;
          }
      }
    
      The inverse of Ekps9566::split is join, except that join can only join with the
      same separator between all fields. To break apart a string with fixed-position
      fields, use unpack.
    
      Processing long $string (over 32766 octets) requires Perl 5.010001 or later.
  • Transliteration

      $tr = Ekps9566::tr($variable,$bind_operator,$searchlist,$replacementlist,$modifier);
      $tr = Ekps9566::tr($variable,$bind_operator,$searchlist,$replacementlist);
    
      This is the transliteration (sometimes erroneously called translation) operator,
      which is like the y/// operator in the Unix sed program, only better, in
      everybody's humble opinion.
    
      This subroutine scans a KPS9566 string character by character and replaces all
      occurrences of the characters found in $searchlist with the corresponding character
      in $replacementlist. It returns the number of characters replaced or deleted.
      If no KPS9566 string is specified via =~ operator, the $_ variable is translated.
      $modifier are:
    
      ---------------------------------------------------------------------------
      Modifier   Meaning
      ---------------------------------------------------------------------------
      c          Complement $searchlist.
      d          Delete found but unreplaced characters.
      s          Squash duplicate replaced characters.
      r          Return transliteration and leave the original string untouched.
      ---------------------------------------------------------------------------
    
      To use with a read-only value without raising an exception, use the /r modifier.
    
      print Ekps9566::tr('bookkeeper','=~','boep','peob','r'); # prints 'peekkoobor'
  • Chop string

      $chop = Ekps9566::chop(@list);
      $chop = Ekps9566::chop();
      $chop = Ekps9566::chop;
    
      This subroutine chops off the last character of a string variable and returns the
      character chopped. The Ekps9566::chop subroutine is used primary to remove the newline
      from the end of an input recoed, and it is more efficient than using a
      substitution. If that's all you're doing, then it would be safer to use chomp,
      since Ekps9566::chop always shortens the string no matter what's there, and chomp
      is more selective. If no argument is given, the subroutine chops the $_ variable.
    
      You cannot Ekps9566::chop a literal, only a variable. If you Ekps9566::chop a list of
      variables, each string in the list is chopped:
    
      @lines = `cat myfile`;
      Ekps9566::chop(@lines);
    
      You can Ekps9566::chop anything that is an lvalue, including an assignment:
    
      Ekps9566::chop($cwd = `pwd`);
      Ekps9566::chop($answer = <STDIN>);
    
      This is different from:
    
      $answer = Ekps9566::chop($tmp = <STDIN>); # WRONG
    
      which puts a newline into $answer because Ekps9566::chop returns the character
      chopped, not the remaining string (which is in $tmp). One way to get the result
      intended here is with substr:
    
      $answer = substr <STDIN>, 0, -1;
    
      But this is more commonly written as:
    
      Ekps9566::chop($answer = <STDIN>);
    
      In the most general case, Ekps9566::chop can be expressed using substr:
    
      $last_code = Ekps9566::chop($var);
      $last_code = substr($var, -1, 1, ""); # same thing
    
      Once you understand this equivalence, you can use it to do bigger chops. To
      Ekps9566::chop more than one character, use substr as an lvalue, assigning a null
      string. The following removes the last five characters of $caravan:
    
      substr($caravan, -5) = '';
    
      The negative subscript causes substr to count from the end of the string instead
      of the beginning. To save the removed characters, you could use the four-argument
      form of substr, creating something of a quintuple Ekps9566::chop;
    
      $tail = substr($caravan, -5, 5, '');
    
      This is all dangerous business dealing with characters instead of graphemes. Perl
      doesn't really have a grapheme mode, so you have to deal with them yourself.
  • Index string

      $byte_pos = Ekps9566::index($string,$substr,$byte_offset);
      $byte_pos = Ekps9566::index($string,$substr);
    
      This subroutine searches for one string within another. It returns the byte position
      of the first occurrence of $substring in $string. The $byte_offset, if specified,
      says how many bytes from the start to skip before beginning to look. Positions are
      based at 0. If the substring is not found, the subroutine returns one less than the
      base, ordinarily -1. To work your way through a string, you might say:
    
      $byte_pos = -1;
      while (($byte_pos = Ekps9566::index($string, $lookfor, $byte_pos)) > -1) {
          print "Found at $byte_pos\n";
          $byte_pos++;
      }
  • Reverse index string

      $byte_pos = Ekps9566::rindex($string,$substr,$byte_offset);
      $byte_pos = Ekps9566::rindex($string,$substr);
    
      This subroutine works just like Ekps9566::index except that it returns the byte
      position of the last occurrence of $substring in $string (a reverse Ekps9566::index).
      The subroutine returns -1 if $substring is not found. $byte_offset, if specified,
      is the rightmost byte position that may be returned. To work your way through a
      string backward, say:
    
      $byte_pos = length($string);
      while (($byte_pos = KPS9566::rindex($string, $lookfor, $byte_pos)) >= 0) {
          print "Found at $byte_pos\n";
          $byte_pos--;
      }
  • Lower case string

      $lc = Ekps9566::lc($string);
      $lc = Ekps9566::lc_;
    
      This subroutine returns a lowercased version of KPS9566 $string (or $_, if
      $string is omitted). This is the internal subroutine implementing the \L escape
      in double-quoted strings.
    
      You can use the Ekps9566::fc subroutine for case-insensitive comparisons via KPS9566
      software.
  • Lower case first character of string

      $lcfirst = Ekps9566::lcfirst($string);
      $lcfirst = Ekps9566::lcfirst_;
    
      This subroutine returns a version of KPS9566 $string with the first character
      lowercased (or $_, if $string is omitted). This is the internal subroutine
      implementing the \l escape in double-quoted strings.
  • Upper case string

      $uc = Ekps9566::uc($string);
      $uc = Ekps9566::uc_;
    
      This subroutine returns an uppercased version of KPS9566 $string (or $_, if
      $string is omitted). This is the internal subroutine implementing the \U escape
      in interpolated strings. For titlecase, use Ekps9566::ucfirst instead.
    
      You can use the Ekps9566::fc subroutine for case-insensitive comparisons via KPS9566
      software.
  • Upper case first character of string

      $ucfirst = Ekps9566::ucfirst($string);
      $ucfirst = Ekps9566::ucfirst_;
    
      This subroutine returns a version of KPS9566 $string with the first character
      titlecased and other characters left alone (or $_, if $string is omitted).
      Titlecase is "Camel" for an initial capital that has (or expects to have)
      lowercase characters following it, not uppercase ones. Exsamples are the first
      letter of a sentence, of a person's name, of a newspaper headline, or of most
      words in a title. Characters with no titlecase mapping return the uppercase
      mapping instead. This is the internal subroutine implementing the \u escape in
      double-quoted strings.
    
      To capitalize a string by mapping its first character to titlecase and the rest
      to lowercase, use:
    
      $titlecase = Ekps9566::ucfirst(substr($word,0,1)) . Ekps9566::lc(substr($word,1));
    
      or
    
      $string =~ s/(\w)((?>\w*))/\u$1\L$2/g;
    
      Do not use:
    
      $do_not_use = Ekps9566::ucfirst(Ekps9566::lc($word));
    
      or "\u\L$word", because that can produce a different and incorrect answer with
      certain characters. The titlecase of something that's been lowercased doesn't
      always produce the same thing titlecasing the original produces.
    
      Because titlecasing only makes sense at the start of a string that's followed
      by lowercase characters, we can't think of any reason you might want to titlecase
      every character in a string.
    
      See also P.287 A Case of Mistaken Identity
      in Chapter 6: Unicode
      of ISBN 978-0-596-00492-7 Programming Perl 4th Edition.
  • Fold case string

      P.860 fc
      in Chapter 27: Functions
      of ISBN 978-0-596-00492-7 Programming Perl 4th Edition.
    
      $fc = Ekps9566::fc($string);
      $fc = Ekps9566::fc_;
    
      New to KPS9566 software, this subroutine returns the full Unicode-like casefold of
      KPS9566 $string (or $_, if omitted). This is the internal subroutine implementing
      the \F escape in double-quoted strings.
    
      Just as title-case is based on uppercase but different, foldcase is based on
      lowercase but different. In ASCII there is a one-to-one mapping between only
      two cases, but in other encoding there is a one-to-many mapping and between three
      cases. Because that's too many combinations to check manually each time, a fourth
      casemap called foldcase was invented as a common intermediary for the other three.
      It is not a case itself, but it is a casemap.
    
      To compare whether two strings are the same without regard to case, do this:
    
      Ekps9566::fc($a) eq Ekps9566::fc($b)
    
      The reliable way to compare string case-insensitively was with the /i pattern
      modifier, because KPS9566 software has always used casefolding semantics for
      case-insensitive pattern matches. Knowing this, you can emulate equality
      comparisons like this:
    
      sub fc_eq ($$) {
          my($a,$b) = @_;
          return $a =~ /\A\Q$b\E\z/i;
      }
  • Make ignore case string

      @ignorecase = Ekps9566::ignorecase(@string);
    
      This subroutine is internal use to m/ /i, s/ / /i, split / /i, and qr/ /i.
  • Make capture number

      $capturenumber = Ekps9566::capture($string);
    
      This subroutine is internal use to m/ /, s/ / /, split / /, and qr/ /.
  • Make character

      $chr = Ekps9566::chr($code);
      $chr = Ekps9566::chr_;
    
      This subroutine returns a programmer-visible character, character represented by
      that $code in the character set. For example, Ekps9566::chr(65) is "A" in either
      ASCII or KPS9566, not Unicode. For the reverse of Ekps9566::chr, use KPS9566::ord.
  • File test subroutine Ekps9566::X

      The following all subroutines function when the pathname ends with chr(0x5C) on
      MSWin32.
    
      A file test subroutine is a unary function that takes one argument, either a
      filename or a filehandle, and tests the associated file to see whether something
      is true about it. If the argument is omitted, it tests $_. Unless otherwise
      documented, it returns 1 for true and "" for false, or the undefined value if
      the file doesn't exist or is otherwise inaccessible. Currently implemented file
      test subroutines are listed in:
    
      Available in MSWin32, MacOS, and UNIX-like systems
      ------------------------------------------------------------------------------
      Subroutine and Prototype   Meaning
      ------------------------------------------------------------------------------
      Ekps9566::r(*), Ekps9566::r_()   File or directory is readable by this (effective) user or group
      Ekps9566::w(*), Ekps9566::w_()   File or directory is writable by this (effective) user or group
      Ekps9566::e(*), Ekps9566::e_()   File or directory name exists
      Ekps9566::x(*), Ekps9566::x_()   File or directory is executable by this (effective) user or group
      Ekps9566::z(*), Ekps9566::z_()   File exists and has zero size (always false for directories)
      Ekps9566::f(*), Ekps9566::f_()   Entry is a plain file
      Ekps9566::d(*), Ekps9566::d_()   Entry is a directory
      ------------------------------------------------------------------------------
      
      Available in MacOS and UNIX-like systems
      ------------------------------------------------------------------------------
      Subroutine and Prototype   Meaning
      ------------------------------------------------------------------------------
      Ekps9566::R(*), Ekps9566::R_()   File or directory is readable by this real user or group
                                 Same as Ekps9566::r(*), Ekps9566::r_() on MacOS
      Ekps9566::W(*), Ekps9566::W_()   File or directory is writable by this real user or group
                                 Same as Ekps9566::w(*), Ekps9566::w_() on MacOS
      Ekps9566::X(*), Ekps9566::X_()   File or directory is executable by this real user or group
                                 Same as Ekps9566::x(*), Ekps9566::x_() on MacOS
      Ekps9566::l(*), Ekps9566::l_()   Entry is a symbolic link
      Ekps9566::S(*), Ekps9566::S_()   Entry is a socket
      ------------------------------------------------------------------------------
      
      Not available in MSWin32 and MacOS
      ------------------------------------------------------------------------------
      Subroutine and Prototype   Meaning
      ------------------------------------------------------------------------------
      Ekps9566::o(*), Ekps9566::o_()   File or directory is owned by this (effective) user
      Ekps9566::O(*), Ekps9566::O_()   File or directory is owned by this real user
      Ekps9566::p(*), Ekps9566::p_()   Entry is a named pipe (a "fifo")
      Ekps9566::b(*), Ekps9566::b_()   Entry is a block-special file (like a mountable disk)
      Ekps9566::c(*), Ekps9566::c_()   Entry is a character-special file (like an I/O device)
      Ekps9566::u(*), Ekps9566::u_()   File or directory is setuid
      Ekps9566::g(*), Ekps9566::g_()   File or directory is setgid
      Ekps9566::k(*), Ekps9566::k_()   File or directory has the sticky bit set
      ------------------------------------------------------------------------------
    
      The tests -T and -B takes a try at telling whether a file is text or binary.
      But people who know a lot about filesystems know that there's no bit (at least
      in UNIX-like operating systems) to indicate that a file is a binary or text file
      --- so how can Perl tell?
      The answer is that Perl cheats. As you might guess, it sometimes guesses wrong.
    
      This incomplete thinking of file test operator -T and -B gave birth to UTF8 flag
      of a later period.
    
      The Ekps9566::T, Ekps9566::T_, Ekps9566::B, and Ekps9566::B_ work as follows. The first block
      or so of the file is examined for strange chatracters such as
      [\000-\007\013\016-\032\034-\037\377] (that don't look like KPS9566). If more
      than 10% of the bytes appear to be strange, it's a *maybe* binary file;
      otherwise, it's a *maybe* text file. Also, any file containing ASCII NUL(\0) or
      \377 in the first block is considered a binary file. If Ekps9566::T or Ekps9566::B is
      used on a filehandle, the current input (standard I/O or "stdio") buffer is
      examined rather than the first block of the file. Both Ekps9566::T and Ekps9566::B
      return 1 as true on an empty file, or on a file at EOF (end-of-file) when testing
      a filehandle. Both Ekps9566::T and Ekps9566::B doesn't work when given the special
      filehandle consisting of a solitary underline. Because Ekps9566::T has to read to
      do the test, you don't want to use Ekps9566::T on special files that might hang or
      give you other kinds or grief. So on most occasions you'll want to test with a
      Ekps9566::f first, as in:
    
      next unless Ekps9566::f($file) && Ekps9566::T($file);
    
      Available in MSWin32, MacOS, and UNIX-like systems
      ------------------------------------------------------------------------------
      Subroutine and Prototype   Meaning
      ------------------------------------------------------------------------------
      Ekps9566::T(*), Ekps9566::T_()   File looks like a "text" file
      Ekps9566::B(*), Ekps9566::B_()   File looks like a "binary" file
      ------------------------------------------------------------------------------
    
      File ages for Ekps9566::M, Ekps9566::M_, Ekps9566::A, Ekps9566::A_, Ekps9566::C, and Ekps9566::C_
      are returned in days (including fractional days) since the script started running.
      This start time is stored in the special variable $^T ($BASETIME). Thus, if the
      file changed after the script, you would get a negative time. Note that most time
      values (86,399 out of 86,400, on average) are fractional, so testing for equality
      with an integer without using the int function is usually futile. Examples:
    
      next unless Ekps9566::M($file) > 0.5;     # files are older than 12 hours
      &newfile if Ekps9566::M($file) < 0;       # file is newer than process
      &mailwarning if int(Ekps9566::A_) == 90;  # file ($_) was accessed 90 days ago today
    
      Available in MSWin32, MacOS, and UNIX-like systems
      ------------------------------------------------------------------------------
      Subroutine and Prototype   Meaning
      ------------------------------------------------------------------------------
      Ekps9566::M(*), Ekps9566::M_()   Modification age (measured in days)
      Ekps9566::A(*), Ekps9566::A_()   Access age (measured in days)
                                 Same as Ekps9566::M(*), Ekps9566::M_() on MacOS
      Ekps9566::C(*), Ekps9566::C_()   Inode-modification age (measured in days)
      ------------------------------------------------------------------------------
    
      The Ekps9566::s, and Ekps9566::s_ returns file size in bytes if succesful, or undef
      unless successful.
    
      Available in MSWin32, MacOS, and UNIX-like systems
      ------------------------------------------------------------------------------
      Subroutine and Prototype   Meaning
      ------------------------------------------------------------------------------
      Ekps9566::s(*), Ekps9566::s_()   File or directory exists and has nonzero size
                                 (the value is the size in bytes)
      ------------------------------------------------------------------------------
  • Filename expansion (globbing)

      @glob = Ekps9566::glob($string);
      @glob = Ekps9566::glob_;
    
      This subroutine returns the value of $string with filename expansions the way a
      DOS-like shell would expand them, returning the next successive name on each
      call. If $string is omitted, $_ is globbed instead. This is the internal
      subroutine implementing the <*> and glob operator.
      This subroutine function when the pathname ends with chr(0x5C) on MSWin32.
    
      For ease of use, the algorithm matches the DOS-like shell's style of expansion,
      not the UNIX-like shell's. An asterisk ("*") matches any sequence of any
      character (including none). A question mark ("?") matches any one character or
      none. A tilde ("~") expands to a home directory, as in "~/.*rc" for all the
      current user's "rc" files, or "~jane/Mail/*" for all of Jane's mail files.
    
      Note that all path components are case-insensitive, and that backslashes and
      forward slashes are both accepted, and preserved. You may have to double the
      backslashes if you are putting them in literally, due to double-quotish parsing
      of the pattern by perl.
    
      The Ekps9566::glob subroutine grandfathers the use of whitespace to separate multiple
      patterns such as <*.c *.h>. If you want to glob filenames that might contain
      whitespace, you'll have to use extra quotes around the spacy filename to protect
      it. For example, to glob filenames that have an "e" followed by a space followed
      by an "f", use either of:
    
      @spacies = <"*e f*">;
      @spacies = Ekps9566::glob('"*e f*"');
      @spacies = Ekps9566::glob(q("*e f*"));
    
      If you had to get a variable through, you could do this:
    
      @spacies = Ekps9566::glob("'*${var}e f*'");
      @spacies = Ekps9566::glob(qq("*${var}e f*"));
    
      Another way on MSWin32
    
      # relative path
      @relpath_file = split(/\n/,`dir /b wildcard\\here*.txt 2>NUL`);
    
      # absolute path
      @abspath_file = split(/\n/,`dir /s /b wildcard\\here*.txt 2>NUL`);
    
      # on COMMAND.COM
      @relpath_file = split(/\n/,`dir /b wildcard\\here*.txt`);
      @abspath_file = split(/\n/,`dir /s /b wildcard\\here*.txt`);
  • Statistics about link

      @lstat = Ekps9566::lstat($file);
      @lstat = Ekps9566::lstat_;
    
      Like Ekps9566::stat, returns information on file, except that if file is a symbolic
      link, Ekps9566::lstat returns information about the link; Ekps9566::stat returns
      information about the file pointed to by the link. If symbolic links are
      unimplemented on your system, a normal Ekps9566::stat is done instead. If file is
      omitted, returns information on file given in $_. Returns values (especially
      device and inode) may be bogus.
      This subroutine function when the filename ends with chr(0x5C) on MSWin32.
  • Open directory handle

      $rc = Ekps9566::opendir(DIR,$dir);
    
      This subroutine opens a directory named $dir for processing by readdir, telldir,
      seekdir, rewinddir, and closedir. The subroutine returns true if successful.
      Directory handles have their own namespace from filehandles.
      This subroutine function when the directory name ends with chr(0x5C) on MSWin32.
  • Statistics about file

      $stat = Ekps9566::stat(FILEHANDLE);
      $stat = Ekps9566::stat(DIRHANDLE);
      $stat = Ekps9566::stat($expr);
      $stat = Ekps9566::stat_;
      @stat = Ekps9566::stat(FILEHANDLE);
      @stat = Ekps9566::stat(DIRHANDLE);
      @stat = Ekps9566::stat($expr);
      @stat = Ekps9566::stat_;
    
      In scalar context, this subroutine returns a Boolean value that indicates whether
      the call succeeded. In list context, it returns a 13-element list giving the
      statistics for a file, either the file opened via FILEHANDLE or DIRHANDLE, or
      named by $expr. It's typically used as followes:
    
      ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
          $atime,$mtime,$ctime,$blksize,$blocks) = Ekps9566::stat($expr);
    
      Not all fields are supported on all filesystem types; unsupported fields return
      0. Here are the meanings of the fields:
    
      -------------------------------------------------------------------------
      Index  Field      Meaning
      -------------------------------------------------------------------------
        0    $dev       Device number of filesystem
                        drive number for MSWin32
                        vRefnum for MacOS
        1    $ino       Inode number
                        zero for MSWin32
                        fileID/dirID for MacOS
        2    $mode      File mode (type and permissions)
        3    $nlink     Nunmer of (hard) links to the file
                        usually one for MSWin32 --- NTFS filesystems may
                        have a value greater than one
                        1 for MacOS
        4    $uid       Numeric user ID of file's owner
                        zero for MSWin32
                        zero for MacOS
        5    $gid       Numeric group ID of file's owner
                        zero for MSWin32
                        zero for MacOS
        6    $rdev      The device identifier (special files only)
                        drive number for MSWin32
                        NULL for MacOS
        7    $size      Total size of file, in bytes
        8    $atime     Last access time since the epoch
                        same as $mtime for MacOS
        9    $mtime     Last modification time since the epoch
                        since 1904-01-01 00:00:00 for MacOS
       10    $ctime     Inode change time (not creation time!) since the epoch
                        creation time instead of inode change time for MSWin32
                        since 1904-01-01 00:00:00 for MacOS
       11    $blksize   Preferred blocksize for file system I/O
                        zero for MSWin32
       12    $blocks    Actual number of blocks allocated
                        zero for MSWin32
                        int(($size + $blksize-1) / $blksize) for MacOS
      -------------------------------------------------------------------------
    
      $dev and $ino, token together, uniquely identify a file on the same system.
      The $blksize and $blocks are likely defined only on BSD-derived filesystems.
      The $blocks field (if defined) is reported in 512-byte blocks. The value of
      $blocks * 512 can differ greatly from $size for files containing unallocated
      blocks, or "hole", which aren't counted in $blocks.
    
      If Ekps9566::stat is passed the special filehandle consisting of an underline, no
      actual stat(2) is done, but the current contents of the stat structure from
      the last Ekps9566::stat, Ekps9566::lstat, or Ekps9566::stat-based file test subroutine
      (such as Ekps9566::r, Ekps9566::w, and Ekps9566::x) are returned.
    
      Because the mode contains both the file type and its permissions, you should
      mask off the file type portion and printf or sprintf using a "%o" if you want
      to see the real permissions:
    
      $mode = (Ekps9566::stat($expr))[2];
      printf "Permissions are %04o\n", $mode & 07777;
    
      If $expr is omitted, returns information on file given in $_.
      This subroutine function when the filename ends with chr(0x5C) on MSWin32.
  • Deletes a list of files.

      $unlink = Ekps9566::unlink(@list);
      $unlink = Ekps9566::unlink($file);
      $unlink = Ekps9566::unlink;
    
      Delete a list of files. (Under Unix, it will remove a link to a file, but the
      file may still exist if another link references it.) If list is omitted, it
      unlinks the file given in $_. The subroutine returns the number of files
      successfully deleted.
      This subroutine function when the filename ends with chr(0x5C) on MSWin32.
  • Changes the working directory.

      $chdir = Ekps9566::chdir($dirname);
      $chdir = Ekps9566::chdir;
    
      This subroutine changes the current process's working directory to $dirname, if
      possible. If $dirname is omitted, $ENV{'HOME'} is used if set, and $ENV{'LOGDIR'}
      otherwise; these are usually the process's home directory. The subroutine returns
      true on success, false otherwise (and puts the error code into $!).
    
      chdir("$prefix/lib") || die "Can't cd to $prefix/lib: $!";
    
      This subroutine has limitation on the MSWin32. See also BUGS AND LIMITATIONS.
  • Do file

      $return = Ekps9566::do($file);
    
      The do FILE form uses the value of FILE as a filename and executes the contents
      of the file as a Perl script. Its primary use is (or rather was) to include
      subroutines from a Perl subroutine library, so that:
    
      Ekps9566::do('stat.pl');
    
      is rather like: 
    
      scalar CORE::eval `cat stat.pl`;   # `type stat.pl` on Windows
    
      except that Ekps9566::do is more efficient, more concise, keeps track of the current
      filename for error messages, searches all the directories listed in the @INC
      array, and updates %INC if the file is found.
      It also differs in that code evaluated with Ekps9566::do FILE can not see lexicals in
      the enclosing scope, whereas code in CORE::eval FILE does. It's the same, however,
      in that it reparses the file every time you call it -- so you might not want to do
      this inside a loop unless the filename itself changes at each loop iteration.
    
      If Ekps9566::do can't read the file, it returns undef and sets $! to the error. If 
      Ekps9566::do can read the file but can't compile it, it returns undef and sets an
      error message in $@. If the file is successfully compiled, do returns the value of
      the last expression evaluated.
    
      Inclusion of library modules (which have a mandatory .pm suffix) is better done
      with the use and require operators, which also Ekps9566::do error checking and raise
      an exception if there's a problem. They also offer other benefits: they avoid
      duplicate loading, help with object-oriented programming, and provide hints to the
      compiler on function prototypes.
    
      But Ekps9566::do FILE is still useful for such things as reading program configuration
      files. Manual error checking can be done this way:
    
      # read in config files: system first, then user
      for $file ("/usr/share/proggie/defaults.rc", "$ENV{HOME}/.someprogrc") {
          unless ($return = Ekps9566::do($file)) {
              warn "couldn't parse $file: $@" if $@;
              warn "couldn't Ekps9566::do($file): $!" unless defined $return;
              warn "couldn't run $file"            unless $return;
          }
      }
    
      A long-running daemon could periodically examine the timestamp on its configuration
      file, and if the file has changed since it was last read in, the daemon could use
      Ekps9566::do to reload that file. This is more tidily accomplished with Ekps9566::do than
      with Ekps9566::require.
  • Require file

      Ekps9566::require($file);
      Ekps9566::require();
    
      This subroutine asserts a dependency of some kind on its argument. If an argument is
      not supplied, $_ is used.
    
      Ekps9566::require loads and executes the Perl code found in the separate file whose
      name is given by the $file. This is similar to using a Ekps9566::do on a file, except
      that Ekps9566::require checks to see whether the library file has been loaded already
      and raises an exception if any difficulties are encountered. (It can thus be used
      to express file dependencies without worrying about duplicate compilation.) Like
      its cousins Ekps9566::do, Ekps9566::require knows how to search the include path stored
      in the @INC array and to update %INC on success.
    
      The file must return true as the last value to indicate successful execution of any
      initialization code, so it's customary to end such a file with 1 unless you're sure
      it'll return true otherwise.
  • Current position of the readdir

      $telldir = Ekps9566::telldir(DIRHANDLE);
    
      This subroutine returns the current position of the readdir routines on DIRHANDLE.
      This value may be given to seekdir to access a particular location in a directory.
      The subroutine has the same caveats about possible directory compaction as the
      corresponding system library routine. This subroutine might not be implemented
      everywhere that readdir is. Even if it is, no calculation may be done with the
      return value. It's just an opaque value, meaningful only to seekdir.