The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
;# This legacy library is deprecated and will be removed in a future
;# release of perl.
;#
;# shellwords.pl
;#
;# Usage:
;#	require 'shellwords.pl';
;#	@words = shellwords($line);
;#	or
;#	@words = shellwords(@lines);
;#	or
;#	@words = shellwords();		# defaults to $_ (and clobbers it)

warn( "The 'shellwords.pl' legacy library is deprecated and will be"
      . " removed in the next major release of perl. Please use the"
      . " Text::ParseWords module instead." );

require Text::ParseWords;
*shellwords = \&Text::ParseWords::old_shellwords;

1;