Echo: Difference between revisions
		
		
		
		Jump to navigation
		Jump to search
		
Anthoanthop (talk | contribs)  Created page with "Tabulations in Bash Scripts:  -e     enable interpretation of backslash escapes  Example:  <syntaxhighlight lang="bash"> $ echo -e 'Column1 \t Column2 \t Column3' Column1 	 Co..."  | 
				Anthoanthop (talk | contribs) No edit summary  | 
				||
| Line 1: | Line 1: | ||
Tabulations in Bash Scripts:  | *Tabulations in Bash Scripts:  | ||
-e     enable interpretation of backslash escapes  | -e     enable interpretation of backslash escapes  | ||
Latest revision as of 13:20, 21 April 2015
- Tabulations in Bash Scripts:
 
-e enable interpretation of backslash escapes
Example:
$ echo -e 'Column1 \t Column2 \t Column3'
Column1 	 Column2 	 Column3