Software >> OS >> Unix >> Solaris >> How to set the Internal Field Separator (IFS) to modify the behaviour of for loops when processing text files# IFS='character'
examples # IFS='\n'
# IFS=' '
Note: following also tested to work (bash specific??) # IFS=$'\n'
|