Re: recurisiveness

2004-06-30 Thread Joe Stuart
Thanks that worked great >>> [EMAIL PROTECTED] 06/30/04 12:22PM >>> Joe Stuart wrote: > I have a script that recursively goes through the filesystem and changes > links in html documents The problem I'm having is that it chokes on > directories with spaces in th

recurisiveness

2004-06-30 Thread Joe Stuart
I have a script that recursively goes through the filesystem and changes links in html documents The problem I'm having is that it chokes on directories with spaces in there names. Does anyone have any suggestions on how to deal with this? I've tried using both glob and readdir to go through the

Mysql.pm

2004-01-13 Thread Joe Stuart
I'm having problems with the Mysql.pm module. When I have the two statements $dbh = Mysql->connect($host,$database,$username,$password); my $sth = $dbh->query("insert into users values(NULL, 'Jon', 'Sterling', 'Doe', 24, '[EMAIL PROTECTED]')"); My problem is when I run it as root it works fine,

Re: quota's

2003-07-17 Thread Joe Stuart
r but it's successful. Thanks >>> Ramprasad <[EMAIL PROTECTED]> 07/17/03 09:44AM >>> Joe Stuart wrote: > I'm trying to implement quota's using the quota interface for perl. The > problem I'm having is when I execute this code. > > #!/

quota's

2003-07-16 Thread Joe Stuart
I'm trying to implement quota's using the quota interface for perl. The problem I'm having is when I execute this code. #!/usr/bin/perl use Getopt::Std; use Quota; getopt("f:s:h:"); die "Usage: $0 -f -s -h \n" if(!$opt_f || !$opt_s || !$opt_h); open(PASS, "/etc/passwd") or die "Unabl