in reply to Re: Re: String Manupulation
in thread String Manupulation
And this is the error I get when trying to run:#!/usr/local/bin/perl -w use strict; my $localtime = scalar localtime; my $tmp = ".txt"; my $logfile = $localtime.$tmp; $logfile =~ tr/ /-/; open( OUTFILE, ">$logfile" ); print OUTFILE "Hello"; close(OUTFILE);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re4: String Manupulation
by dragonchild (Archbishop) on Aug 27, 2003 at 17:50 UTC | |
|
Re: Re: Re: Re: String Manupulation
by davido (Cardinal) on Aug 27, 2003 at 19:00 UTC | |
|
Re: Re: Re: Re: String Manupulation
by asarih (Hermit) on Aug 27, 2003 at 19:19 UTC | |
|
Re: Re: Re: Re: String Manupulation
by codingchemist (Novice) on Aug 27, 2003 at 20:25 UTC | |
|
Re: Re: Re: Re: String Manupulation
by ritontor (Acolyte) on Aug 27, 2003 at 18:14 UTC | |
|
Re: Re: Re: Re: String Manupulation
by welchavw (Pilgrim) on Aug 27, 2003 at 20:31 UTC |