Re: Newline in CGI script

2007-05-07 Thread Andy_Bach
> The following code is live at http://www.biblescramble.com/Esther/x.cgi. > I want to put newlines where the tabs are in $insert=" Hazel Work states: WYrelocate: No"; > I've tried , \n, etc. What do I need? Not sure what you're after, exactly. Perl will replace tabs by: $inse

Re: DBM file handles & "close-on-exec" ?

2007-05-07 Thread Bill Luebkert
[EMAIL PROTECTED] wrote: > Hi! > > I have a Perl script that opens a number of DBM files. It also starts > other programs via calls to "system". I recently found out that the > "handles" to the DBM-files seem to be inherited by the newly started > process. I would like to avoid this. Does anybody

DBM file handles & "close-on-exec" ?

2007-05-07 Thread johan556
Hi! I have a Perl script that opens a number of DBM files. It also starts other programs via calls to "system". I recently found out that the "handles" to the DBM-files seem to be inherited by the newly started process. I would like to avoid this. Does anybody know how to do this? To demonstrate