Re: Regex exception

2002-07-09 Thread Jaime Hourihane
or what about unless... opendir(DIR, $dir) || die .. while() { unless ~= $pattern { unlink or remove here } } -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Any Site can recommand to me ?

2002-06-21 Thread Jaime Hourihane
roberts perl tutorial search on google -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Looping through variables

2002-05-20 Thread Jaime Hourihane
assign it to an array and then loop thru it @array = qw(name age phone); foreach (@array) { print "$_\n"; } -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: printing FILE HANDLE to mail

2002-05-17 Thread Jaime Hourihane
Thanks for the reply Shaun that worked perfect I guess being a web master you ran into this problem with CGI ;-) Jaime -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

printing FILE HANDLE to mail

2002-05-17 Thread Jaime Hourihane
Hello fellow perl enthusiasts I want to be able to open a Mail File Handle and have seperate file go this Mail File Handle I have some code like this: --- #!/util/perl5.static -w $unixadm = "hourihj"; $report = "/etc/passwd"; $hostname = qx(/usr/ucb/hos