I just use default csh.
echo -e "\e[=4G"
Works in sh(1), but not in csh(1) nor /bin/echo.
Seems echo doesn't have '-e' argument/flag/switch so echoes '-e "\e[=4G"' literally.
Yes. From csh, this (edited) works:
% sh -c 'echo -e "\e[=4G" '
(but eww, how do I turn it off!?)