Our Sponsors



Download BioinformaticsOnline(BOL) Apps in your chrome browser.




Perl script to reads and extract webpage contents !

  • Public
By Jit 1505 days ago
use 5.010; use strict; use warnings; use WWW::Mechanize; my ($url) = @ARGV; die "Usage: $0 URL\n" if not $url; my $w = WWW::Mechanize->new; $w->get($url); say $w->content; #Run #jit@jit-HP-Pro-3335-MT:~/Downloads/testDock$ perl web.pl https://bioinformaticsonline.com