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

Re: Interesting zsh behaviour regarding awk and backslash



On Sep 27,  1:54pm, Jeremie Roquet wrote:
}
} Why bother with gawk?
} 
} bash$ echo '\\'
} \\
} zsh$ echo '\\'
} \

This isn't quoting behavior, it's "echo" behavior.  If you tell zsh to
act like a standard shell, it does:

% ARGV0=sh zsh -f
$ echo '\\'
\\
$  set -o | grep echo
nobsdecho             off
$ 



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