This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Perl_hv_placeholders_get() actually takes a const HV *hv.
[perl5.git] / lib / shellwords.pl
CommitLineData
2b69d0c2
LW
1;# shellwords.pl
2;#
3;# Usage:
4;# require 'shellwords.pl';
08b96d1f 5;# @words = shellwords($line);
2b69d0c2 6;# or
08b96d1f 7;# @words = shellwords(@lines);
2b69d0c2 8;# or
08b96d1f 9;# @words = shellwords(); # defaults to $_ (and clobbers it)
9ef589d8 10
6a724e38
AT
11require Text::ParseWords;
12*shellwords = \&Text::ParseWords::old_shellwords;
9ef589d8 13
9ef589d8 141;