projects
/
p5sagit/p5-mst-13.2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Some escapes were mentioned twice, although they're not qr//-specific
[p5sagit/p5-mst-13.2.git]
/
lib
/
shellwords.pl
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
11
require Text::ParseWords;
12
*shellwords = \&Text::ParseWords::old_shellwords;
13
14
1;