Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: STDOUT Limbo



James Swanson writes:
> Has anyone had troubles with STDOUT from a Perl script?  Unlike
> any of my shell scripts, output doesn't show up at the command
> line.

Sounds like you didn't include a newline in your perl scripts.  The
analogous command for this shell output:

    echo "some string"

would be this in perl:

    print "some string\n";

..wayne..



Messages sorted by: Reverse Date, Date, Thread, Author