This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Re: [PATCH] Mac OS X 10.4.4 (Darwin 8.4.0) still does not fix locale issue
[perl5.git] / lib / shellwords.pl
... / ...
CommitLineData
1;# shellwords.pl
2;#
3;# Usage:
4;# require 'shellwords.pl';
5;# @words = shellwords($line);
6;# or
7;# @words = shellwords(@lines);
8;# or
9;# @words = shellwords(); # defaults to $_ (and clobbers it)
10
11require Text::ParseWords;
12*shellwords = \&Text::ParseWords::old_shellwords;
13
141;