System()

2004-05-12 Thread Octavian Rasnita
Hi, I have tried: system(zip, -r, archive, *); But this tells me that the file * cannot be found. I guess the shell thinks that I want to pass the quoted string * and not only the * character to match all files. I have succeeded with: system(zip -r \archive\ *); But I have seen that it is

RE: Escaping quotes in variable content

2004-05-12 Thread jon
print form name=\test\ action=\http://www.somewhere.com\;\n; printinput type=\text\ name=\frage_text\ size=\100\ value=\$frage_text\ /\n; print /form\n; This wasn't really the question, but... If you have to write html within perl, use qq( ) instead of . It's a lot easier to read, and

RE: Escaping quotes in variable content

2004-05-12 Thread Edvaldo Barbosa Guimar�es
Try $frage_text =~ s/\/\\/g; I think it will work better this way. Edvaldo Guimarães Marketing Support - Latin America UGS PLM Solutions Brasil An EDS Company Tel.: +55-11-4224-7153 Fax: +55-11-4224-7107 -Original Message- From: Ash Singh [mailto:[EMAIL PROTECTED] Sent: Tuesday, May

Deleting a dir

2004-05-12 Thread Octavian Rasnita
Hi all, If the user Apache which runs the cgi scripts on my server want to delete a file that has restrictive priviledges and is owned by another user, how can I make a cgi program to be able to delete those files? I don't know very much about Unix/Linux yet... Thank you. Teddy -- To

RE: Deleting a dir

2004-05-12 Thread Bob Showalter
Octavian Rasnita wrote: Hi all, If the user Apache which runs the cgi scripts on my server want to delete a file that has restrictive priviledges and is owned by another user, how can I make a cgi program to be able to delete those files? Deleting a file requires write privilege in the