Re: Linux Directory Copy Modules that Won't

2025-02-01 Thread Ruprecht Helms (privat)
Hi, I do my backups to the nas by a short bash-script using the wput-command. That is combined with a cronjob that does ist every hour. Its not the perl-way but a seamilar. Regards, Ruprecht On 01.02.25 15:34, Martin McCormick wrote: This is perl 5, version 36, subversion 0 (v5.36.0) built fo

Re: Upgrade from Debian 11 to Debian 12 Broke Perl.

2024-03-13 Thread Ruprecht Helms (privat)
. The tarball you will find on https://metacpan.org/pod/warnings::unused Regards, Ruprecht | On 13.03.24 13:00, Ruprecht Helms (privat) wrote: Hi, what is saying the following: perl -v   ?? Maybe the below mentioned version needs an update. In this case do the following: |sudo apt

Re: Upgrade from Debian 11 to Debian 12 Broke Perl.

2024-03-13 Thread Ruprecht Helms (privat)
Hi, what is saying the following: perl -v   ?? Maybe the below mentioned version needs an update. In this case do the following: |sudo apt update ||sudo apt install perl ||sudo apt install perl libdatetime-perl libjson-perl After that have a look at perl-packages you need ||apt-cache search

Re: Tool for develop in Perl

2023-10-23 Thread Ruprecht Helms
An Alternative for VIM or Emacs is the Nano-Editor. Maybe the IDE Eclipse is able to assist you in developing perl-code. But like to use Eclipse for PHP-Developing, Handling SQL, ... you have to install a plugin to add this oppertunity. By default Eclipse is a IDE for Java-Developing. Regar

Re: change one line in a large fine

2022-11-20 Thread Ruprecht Helms (privat)
Hi, readline will be your friend. Just have a look in the example mentioned this link: https://www.tutorialspoint.com/perl/perl_readline.htm Regards, Ruprecht Am 20.11.22 um 15:41 schrieb supp...@openmbox.net: May i ask a question about reading file? while(0){ print 'hi' } Will never prin

Re: How to can develop a program

2022-08-02 Thread Ruprecht Helms (privat)
First you need the roadmap of what you want to do. The other is to read one or both of the mentioned book below. Or book about beginning perl from the Oreily-Distributor. Maybe the book "Effective Perl Programming" from Joseph N. Hall can be an additional option. As mentioned in another mail f

Re: How to can develop a program

2022-08-02 Thread Ruprecht Helms (privat)
Hi everybody, Am 02.08.22 um 11:16 schrieb Christian Walde: On Tue, 02 Aug 2022 10:41:36 +0200, Ruprecht Helms (privat) wrote: Am 02.08.22 um 10:07 schrieb Christian Walde: What you're describing is how to make a roadmap for the implementation of a specific program. William asked

Re: How to can develop a program

2022-08-02 Thread Ruprecht Helms (privat)
for bigger developing-project the best thing is a roadmap, because you have to plan the steps what the thing should do. Start with a sheet of paper and a pencil and after that you can decide what programminglanguage to use and which module you want to start first. Regards, Ruprecht A

Re: How to can develop a program

2022-08-01 Thread Ruprecht Helms (privat)
Hi, I know eclipse as a developingtool that is normaly used for Java-development. But this tool also have plugins for developing in PHP, for Android-Programming and maybe for development in perl or in python. Regards, Ruprecht Am 01.08.22 um 13:23 schrieb hw: I have installed eclipse on my

Re: Which distribution of PERL to use

2022-07-08 Thread Ruprecht Helms (privat)
Hi, I think the best way is to have a look in the article in the perl.com-Website. Here are descriptions of the different Perl-Versions running on windows. MacOS and Linux is also mentioned in the article. So feel free what Perl-Version you want to try and test. You will find that you need.

Re: Which distribution of PERL to use

2022-07-08 Thread Ruprecht Helms (privat)
Hi, Am 08.07.22 um 14:49 schrieb Christian Walde: On Fri, 08 Jul 2022 12:06:07 +0200, Ruprecht Helms (privat) wrote: what I see is that Cygwin enables to run linux on a windows-computer. That is not what it does. I don't have the time to explain it, but i recommend actually reading

Re: Which distribution of PERL to use

2022-07-08 Thread Ruprecht Helms (privat)
Hi, what I see is that Cygwin enables to run linux on a windows-computer. As mentioned the Strawberry-Perl distribution maybe an option for Windows, but I think if want to do more, it is better to change the operating system on your computer to a linux. What distibution - feel free. You can use

Re: virus detection - empty DOC or XLS with a macro

2015-10-20 Thread Ruprecht Helms
Hi, > I still haven't worked out how to check for macros yet but the text has been > sorted I think you can find out how to handle embeded macros is to produce a excelsheet, record a macro and save the whole as a new excelfile. I don't know if the vba-code is stored as a binarypart in the file.

reconfigure perlscript for mailing with the MTA postfix

2009-10-05 Thread Ruprecht Helms
daemon is started, but that is not the command for sending out mails using postfix. #!/usr/bin/perl -w # # Pfad zu sendmail my $mailprog = '/usr/sbin/postfix reload'; Regards, Ruprecht Helms --- Ruprecht Helms IT-Service & Softw

Re: AW: Url written in txtfile

2009-10-05 Thread Ruprecht Helms
rname}_${Name}_$id.html"; > }, > 'Link zum Profil' > ); CGI->a({href="http://www.example.com/../${Vorname}..${id}.html"},'Link zum Profil'); you have to write to get an URL like this one: http://www.example.com/../

Re: Url written in txtfile

2009-10-05 Thread Ruprecht Helms
Shawn H Corey wrote: Hi, >> >> how have I to write the printstatement to write a URL like >> http://www.example.com within the htmltag (> href="http://www.example.com";>Linktext) into a textfile. >> >> Regards, >> Ruprecht Helms >> >

Re: Url written in txtfile

2009-10-02 Thread Ruprecht Helms
tion of the phrase. In addition this method have no problems with rewritten urls, modified using the mod_rewrite for apache. Regards, Ruprecht Helms -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Url written in txtfile

2009-10-02 Thread Ruprecht Helms
Hi, how have I to write the printstatement to write a URL like http://www.example.com within the htmltag (http://www.example.com";>Linktext) into a textfile. Regards, Ruprecht Helms -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beg

variables and sql-statements within perlscripts

2009-09-28 Thread Ruprecht Helms
Hi, How have I to write the sql-statement if I want to use variables like this: The value of the variable can have the value of another recordsetloop or a value come from outsite the script. Regards, Ruprecht Helms -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional

Re: some errors in databasescript

2009-09-20 Thread Ruprecht Helms
Uri Guttman wrote: >>>>>> "RH" == Ruprecht Helms writes: > RH> Possible I have to seperate the script into different scriptfiles for > RH> better finding. > > 100 lines is not so large script that it needs breaking up. your issue > is gettin

Re: some errors in databasescript

2009-09-17 Thread Ruprecht Helms
the error Missing right cury ... in line 100 Possible I have to seperate the script into different scriptfiles for better finding. Regards, Ruprecht Helms -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

some errors in databasescript

2009-09-17 Thread Ruprecht Helms
Hi, I've written a little perlscript that should write the output of databasetables into a textfile. But unfortunately I get some syntaxerrors that a least I'm not able to reproduce. syntax error at ./statistik.pl line 73, near "} or" syntax error at ./statistik.pl line 82, near ") {" syntax erro

Re: Problem with little ftpscript

2007-10-04 Thread Ruprecht Helms
Hi Jeff >> Can't locate object method "new" via package "NET::FTP" (perhaps you >> forgot to load "NET::FTP"?) at ./auftraege_holen.pl line 7. >> > > Hi, > > The correct package name is Net::FTP,see this module on cpan: > http://search.cpan.org/~gbarr/libnet-1.22/Net/FTP.pm > I just reinstalled

Problem with little ftpscript

2007-10-04 Thread Ruprecht Helms
t;get("wir_neu.html"); What have I todo? Regards, Ruprecht Helms Web: http://www.rheyn.de -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: parsing csv-file for inserting in database

2007-09-19 Thread Ruprecht Helms
Chas Owens wrote: > On 9/19/07, Ruprecht Helms <[EMAIL PROTECTED]> wrote: >> #!/usr/bin/perl > > First off, you should use the strict and warnings pragmas. So the > first two lines after the $! should be > > use strict; > use warnings; ... I inserted the two

Re: parsing csv-file for inserting in database

2007-09-19 Thread Ruprecht Helms
Andrew Curry wrote: > open(CSV,"Kalkulation_Tauchsportportal.csv") || die "CSV-Datei nicht > gefunden\"; you have \ your " Ok I corrected it, now I only have an syntax-error in line 25 (split-command). In addition i am told that the part is not terminated. The actual code is: #!/usr/bin/perl

Re: parsing csv-file for inserting in database

2007-09-19 Thread Ruprecht Helms
@Datenfelder = split(/,|,$Felder); for(@Auftraege) { @Datensatz = split(/,|,/,$_); $i = 0; for(@Datensatz) { pint Auftrag "$Datenfelder[$i]: $Datensatz[$i]\n"; $i++ } } close (Auftrag); print $Anzahl," Datensaetze

Re: unable to use perl script with post on university wireless network

2007-09-17 Thread Ruprecht Helms
connection or the script should do a database-transaction or what should the script do. Regards, Ruprecht Helms ----- Ruprecht Helms IT-Service & Softwaredevelopment Web: http://www.rheyn.de -- To unsubscribe, e-mail:

Re: parsing csv-file for inserting in database

2007-09-16 Thread Ruprecht Helms
Hi Ken, >> how can I parse a csv-file where the entries are seperated with | . >> The scripts later should put them into a mysql-database using dbi. > > if it just splitting: > > @data = split( /\|/, $line ); I see you are working with array. The using of the for each-loop must be possible

parsing csv-file for inserting in database

2007-09-16 Thread Ruprecht Helms
be nice. Regards, Ruprecht Helms -- Ruprecht Helms IT-Serive & Softwaredevelopment Web: http://www.rheyn.de -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/