2003-04-29 11:31:03 +02:00
|
|
|
This is a thin wrapper around the shellwords.pl package, which comes
|
|
|
|
preinstalled with Perl. This module imports a single subroutine,
|
|
|
|
shellwords(). The shellwords() routine parses lines of text and
|
|
|
|
returns a set of tokens using the same rules that the Unix shell does
|
|
|
|
for its command-line arguments. Tokens are separated by whitespace,
|
|
|
|
and can be delimited by single or double quotes. The module also
|
|
|
|
respects backslash escapes.
|
2005-03-10 10:26:11 +01:00
|
|
|
|
2006-06-15 03:16:08 +02:00
|
|
|
Author: Lincoln Stein <lstein@cshl.org>.
|
2011-10-24 11:11:38 +02:00
|
|
|
WWW: http://search.cpan.org/dist/Text-Shellwords/
|