Re: Rsync options not recognized by system function

2011-05-31 Thread Chris Nehren
On Fri, May 27, 2011 at 14:10:16 -0700 , John W. Krahn wrote: The real problem is that $RSYNC_OPTS contains whitespace and you can't mix system(LIST) and system(STRING) together like that. It has to be either: system($RSYNC, split( ' ', $RSYNC_OPTS ),

Rsync options not recognized by system function

2011-05-27 Thread Ezra Taylor
Hello All: My rsync options are not being recognized in the system function. I tried escaping the asterisks and single quotes to no avail. Also, I do not want to install any rsync modules. Your help will be much appreciated. Thanks. my $RSYNC_OPTS=' -auvr --include='*/'

Re: Rsync options not recognized by system function

2011-05-27 Thread Kenneth Wolcott
On Fri, May 27, 2011 at 12:10, Ezra Taylor ezra.tay...@gmail.com wrote: Hello All:                My rsync options are not being recognized in the system function.  I tried escaping the asterisks and single quotes to no avail. Also, I do not want to install any rsync modules.  Your help will

Re: Rsync options not recognized by system function

2011-05-27 Thread Uri Guttman
ET == Ezra Taylor ezra.tay...@gmail.com writes: ET Hello All: ET My rsync options are not being recognized in the system ET function. I tried escaping the asterisks and single quotes to no avail. ET Also, I do not want to install any rsync modules. Your help will be

Re: Rsync options not recognized by system function

2011-05-27 Thread John W. Krahn
Uri Guttman wrote: ET == Ezra Taylorezra.tay...@gmail.com writes: ET Hello All: ET My rsync options are not being recognized in the system ET function. I tried escaping the asterisks and single quotes to no avail. ET Also, I do not want to install any rsync