On Tuesday, March 25, 2003, at 03:31 PM, [EMAIL PROTECTED] wrote:


my $make_command =
         "rsh $linuxMachine "
        ."cd $pwd/test/c/$testName;"
        ."make $makeparam >&! log/make.log";

my $retval = syscmd($make_command);

if ($retval)

when I run the perl version, I get this: sh: !: bad number >>> Can't execute make: >>> ''

When I do the commands directly on teh command line:
        rlogin willy
        cd ../test/c/cftest
        make all > & ! log/make.log
it works fine.

What happens when you do the rsh on the command line?


That is, type:

rsh willy cd ../test/c/cftest; make all >&! log/make.log

does this work?

Ricky

_______________________________________________
Boston-pm mailing list
[EMAIL PROTECTED]
http://mail.pm.org/mailman/listinfo/boston-pm

Reply via email to