File: Shellwords.pm

package info (click to toggle)
gbrowse 2.54%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 12,724 kB
  • ctags: 4,370
  • sloc: perl: 48,499; sh: 164; sql: 62; makefile: 39; 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;