[glug-t] One Day One GNU/Linux Command (ECHO)
- From: Bharathi Subramanian <sbharathi@xxxxxxxxxxxxx>
- To: GNU/Linux Users Group - Trichy <glug_t@xxxxxxxxxxxxx>, GNU/Linux User Group of TCE <glugot@xxxxxxxxxxxxx>, VEC-FOSS <vecfoss@xxxxxxxxxxxxxxxx>
- Date: Fri, 18 Apr 2008 10:27:29 +0530 (IST)
One Day One GNU/Linux Command
=============================
echo - Display a line of text on the screen
Summary:
Echo is used to show a line of text on the screen with limited Esc
sequence (BELL, Backspace, H-Tab, V-Tab,...) handling capabilities.
Example:
$ echo -- Display a empty line
$ echo $HOME -- Display the env variable value.
$ echo -n "No new line" -- Display with-out trailing newline.
$ echo "Bharathi\nILUGC" -- Display the line, as it is.
$ echo -e "Bharathi\n\tILUGC" -- Interpret and show the line
$ echo -e "\033[1;34m ILUGC \033[0m" -- Display with color.
Read: man echo
HTH :)
--
Bharathi S
---------------------------------------------------------------
To unsubscribe send a mail to glug_t-request@xxxxxxxxxxxxx with
'unsubscribe' as subject.
Website: http://glugt.linuxisle.com
Other related posts:
- » [glug-t] One Day One GNU/Linux Command (ECHO)