1 ;# This legacy library is deprecated and will be removed in a future
7 ;# require 'shellwords.pl';
8 ;# @words = shellwords($line);
10 ;# @words = shellwords(@lines);
12 ;# @words = shellwords(); # defaults to $_ (and clobbers it)
14 warn( "The 'shellwords.pl' legacy library is deprecated and will be"
15 . " removed in the next major release of perl. Please use the"
16 . " Text::ParseWords module instead." );
18 require Text::ParseWords;
19 *shellwords = \&Text::ParseWords::old_shellwords;