I've a script which i want to schedule to run at 10:00 AM every morning using cron. I have no prior idea about using cron. Firstly I want to know whether it is possible to schedule the running of a perl script using cron or not.If it is possible kindly help me out. thanx in advance.
#!/usr/bin/perl
use strict;
use warnings;
use LWP::Simple;
use Email::Send;
use Email::Send::Gmail;
use Email::MIME::Creator;
use IO::All;
my $url = "http://abcd.com/search?q=%22MB%22&t=blogs&f=csv";
my $file = "/Users/Abc/Desktop/MB.csv";
my $status = mirror($url,$file);
die "Cannot retrieve $url" unless is_success($status);
my $email = Email::MIME->create(
header => [
From => 'abcd@gmail.com'
To => 'abc1@gmail.com',
Subject => 'ABCD',
],
attributes => {
filename =>"MB.csv",
content_type =>"application/csv",
disposition =>"attachment",
Name =>"/Users/Abc/Desktop/MB.csv",
},
body => io( "/Users/Abc/Desktop/MB.csv" )->all,
);
my $sender = Email::Send->new(
{ mailer => 'Gmail',
mailer_args => [
username => 'abcd@gmail.com',
password => '1234qwerty',
]
}
);
eval { $sender->send($email) };
die "Error sending email: $@" if $@;
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.