in reply to How do i use the wget command in perl
NoteThose are supposed to be backticks around "your shell command here", but for some reason today's mozilla build doesn't seem to display them as such. Are they showing up correctly for anyone?#!/usr/bin/perl -w use strict; my $result = `your shell command here`; parseResult ($result); sub parseResult { #do your magic here }
|
|---|