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

RE: weird problems with zsh



>>>>> "oleg" == oleg dashevskii <od@xxxxxxxxxxxx> writes:

    oleg> hello!  for some case or another when I type into the
    oleg> command line

    oleg> % perl -e "print 'aaa'"

    oleg> it outputs nothing, as opposed to bash which lets perl
    oleg> output 'aaa'

You need to add '\n' to the print, otherwise, the output displayed
will be overwritten by the zsh prompt.  You can try to add an echo
command at the end to see what I meant:

    % perl -e "print 'aaa'"; echo ""



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