source: for-distributions/trunk/bin/windows/perl/lib/shellwords.pl@ 14489

Last change on this file since 14489 was 14489, checked in by oranfry, 17 years ago

upgrading to perl 5.8

File size: 276 bytes
Line 
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;
Note: See TracBrowser for help on using the repository browser.