The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #4 (permalink)  
Old 11-18-2008
demwz demwz is offline
Registered User
  
 

Join Date: Jun 2008
Posts: 128
There are some special characters in Unix for ex :" $ & \ ~"
putting a \ before a special character inverts the special meaning of a character. so it is getting a simple ascii text
Code:
sptmw@mwvm:~$ echo ~
/home/sptmw
sptmw@mwvm:~$ echo \~
~
also the are simple ascii letters which can be turned to special characters by putting a \ in front
echo \b hello
in some terminals causes bold text

and one line \[ENTER]
second line

means ignore the [ENTER] Key an handle everything as one line