File: Shellwords.pm

package info (click to toggle)
gbrowse 2.56%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 13,112 kB
  • ctags: 4,436
  • sloc: perl: 50,765; sh: 249; sql: 62; makefile: 45; ansic: 27
file content (16 lines) | stat: -rw-r--r-- 212 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package Bio::Graphics::Browser2::Shellwords;

require Text::ParseWords;

use base 'Exporter';
our @EXPORT = 'shellwords';


sub shellwords {
  return unless @_;
  return Text::ParseWords::shellwords(@_);
}

1;