in reply to which echo
On some systems. Seems to be when dash (a simpler, faster shell), is used for sh instead of bash.sh -c "echo -e 'hi there'" -e hi there
But why are you calling echo from perl in the first place? It's not necessary.bash -c "echo -e 'hi there'" hi there /bin/echo -e 'hi there' hi there
|
---|