Bash Built-In Variables: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 7: | Line 7: | ||
==IFS== | ==IFS== | ||
= | <blockquote style="background-color: Gold; border: solid thin Goldenrod;"> | ||
:'''Note''' you must set IFS back to " " after setting it to something else, so the basic shell function work as expected. This is done with IFS=" ".<br> | |||
</blockquote> | |||
Also see: | |||
<blockquote style="background-color: #f9f9f9; border: solid thin lightgrey;"> | |||
:[[bash set#List_Separator|bash <tt>set</tt> List Separator]] | |||
<blockquote style="background-color: | |||
: | |||
</blockquote> | </blockquote> |
Revision as of 23:36, 29 February 2016
Internal
Standard Environment Variables
IFS
- Note you must set IFS back to " " after setting it to something else, so the basic shell function work as expected. This is done with IFS=" ".
Also see: