echo
echo [-neE] [arg ...] 
 Prints the given text or the values of the specified arguments. 
 
| Option | 
 Description | 
 
 
  -n   
  | 
 The trailing newline is suppressed.  
  | 
 
  -e   
  | 
 Interpretation of the following backslash-escaped characters is turned on:  
 
  \a   
  | 
 Alert (bell)  
  | 
  
  \b   
  | 
 Backspace  
  | 
  
   \c   
  | 
 Suppress trailing newline  
  | 
  
   \E   
  | 
 Escape character  
  | 
  
   \f   
  | 
 Form feed  
  | 
  
   \n   
  | 
 New line  
  | 
  
   \r   
  | 
 Carriage return  
  | 
  
   \t   
  | 
 Horizontal tab  
  | 
  
   \v   
  | 
 Vertical tab  
  | 
  
   \\   
  | 
 Backslash  
  | 
  
   \num   
  | 
 The character whose ASCII code is NUM (octal).  
  | 
  
 
  
 
  
  | 
 
  -E   
  | 
 Explicitly turns off the interpretation of the above characters.  
  |