File: Shellwords.pm

package info (click to toggle)
gbrowse 2.56%2Bdfsg-8
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 13,104 kB
  • sloc: perl: 50,765; sh: 227; sql: 62; makefile: 50; 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;