Echo

From Anthony Pastor Wiki Notes - Verba volant, scripta manent
Revision as of 14:20, 21 April 2015 by 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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Tabulations in Bash Scripts:

-e enable interpretation of backslash escapes

Example:

$ echo -e 'Column1 \t Column2 \t Column3'
Column1 	 Column2 	 Column3