oMish 1193593175 learn echo with option -e interprets backslashed special characters. Pay attention to use single quotes when literally using backspashed sequences with echo -e (\n, \t, etc). Example: echo -e '\n\n\n' prints fours linefeeds (sic). oMish 1193593429 forget oMish 1193593431 learn echo with option -e interprets backslashed special characters (\n, \t, etc). Pay attention to use single quotes when literally using backspashed sequences with echo -e. Also check out echo -n. Example: echo -e '\n\n\n' prints fours linefeeds. ormaaj 1348596993 forget ormaaj 1348597136 learn #redirect echo