For example, i need to call echo or date command:
~ echo "%k%M"
debs-e420"%k%M
~ date +%k:%M
debs-e42010:24
But if I run it in bash I'll get what I need:
$ date +%k:%M
10:25
$ echo "%k%M"
%k%M
So, how to prevent unwanted string expansion in zsh?
I'm using zsh 4.3.17 and latest oh-my-zsh. Also, if I run zsh without oh-my-zsh, it works as expected.
zsh, and I'm not sure it's azshissue oroh-my-zsh. Because if I runzshwithoutoh-my-zshI do not see any such issues. – qehgt Nov 20 '12 at 16:30