Re: while IFS= read -r line; do - Der Keiler UNIX: The source for the UNIX SysAdmin
puzzlecracker wrote: what does IFS mean and what is it used for in shell script. Here is example: while IFS= read -r line; do echo $line done You know there are man pages to get information about commands? IFS Internal field separators, normally space, ta...