send emails via perl

2014-11-19 Thread Sergio Letuche
hello, we need to use the easiest solution, if possible just use a perl module, to be able to send automated emails on an Ubuntu server. The scenario is this: we ran a cron job, and say we would like to send a message after completion, to a certain for example gmail account. The ideal would be to

Re: send emails via perl

2014-11-19 Thread Sergio Letuche
i do not object to any approach suggested, all are welcome 2014-11-19 16:46 GMT+02:00 Marc Chantreux m...@unistra.fr: On Wed, Nov 19, 2014 at 02:19:26PM +, PHILLIPS M.E. wrote: open (MAIL, |-, '/bin/mailx', '-s', $subject, @addresses) || die Failed to e-mail report: $!\n;

UNIMARC example file?

2014-12-11 Thread Sergio Letuche
hello everybody, could someone provide me with an example UNIMARC iso2709 file in order to test a module? Thank you in advance

Re: UNIMARC example file?

2014-12-11 Thread Sergio Letuche
thank you very much 2014-12-11 14:53 GMT+02:00 Galen Charlton gmcha...@gmail.com: Hi, On Thu Dec 11 2014 at 3:08:53 AM Sergio Letuche code4libus...@gmail.com wrote: could someone provide me with an example UNIMARC iso2709 file in order to test a module? Thank you in advance A set

creating an index of files contents

2016-09-23 Thread Sergio Letuche
hello community, Say we have the following structure in our filesystem: dir1 dir2 dir3 dir4 dir stands for directory of course. In dir1, there is a file1.txt that has in it numbers, like below 6576576 898798789 5645436549 76567576576 876876876876 Same goes for dir2. In dir2, there is a

Re: identify ISSN numbers in an mrc file

2016-11-02 Thread Sergio Letuche
./MARCGgrep.pl -o marc -e condition1 file.mrc | ./MARCGgrep.pl -e >condition2 - > > KNOWN ISSUES >Performance. > >Accepts and returns only UTF-8. > >Checks are case sensitive. > > AUTHOR >Pontificia Universita'

Re: identify ISSN numbers in an mrc file

2016-11-02 Thread Sergio Letuche
can't be sure of that. > > (and if you're interested in spotting ISSNs in the middle of a field use > \b\d{4}-?\d{3}[\dxX]\b > but beware this also finds year ranges [e.g. 1990-2000]!) > > Ben > > > On Wednesday, 2 November 2016 12:06:15 GMT Sergio Letuche wrote: > >

identify ISSN numbers in an mrc file

2016-11-02 Thread Sergio Letuche
Hello community, how would you treat the following? I need a way to identify all tags - subfields, that have stored an ISSN number in them. What would you suggest as a clever approach for this? Thank you