File: wwwshell.pl

package info (click to toggle)
libwww-mechanize-shell-perl 0.62-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 588 kB
  • sloc: perl: 3,324; makefile: 5
file content (11 lines) | stat: -rw-r--r-- 185 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/perl -w
use strict;
use WWW::Mechanize::Shell;

my $shell = WWW::Mechanize::Shell->new("shell");

if (@ARGV) {
  $shell->source_file( @ARGV );
} else {
  $shell->cmdloop;
};