David <[EMAIL PROTECTED]> writes:

[...]

> print "$results";
> 
> -----------end-----------------------
> 
> like I said, I know the script works (it does on my redhat (6.2 and
> 7.2) box anyway).  Any idea why it wont work on coooker?

solutions:
- replace   print "$results";    with    print "$results\n";
- add   $\ = "\n";
- use   ./your_script ; echo
- use bash instead of zsh (or simplify your PS1 prompt)

Reply via email to