Open netzego opened 1 year ago
$IFS=$'\t\n' (' ' is missing) prevents printing an array in one line. This clash for eg. with print_vars function.
$IFS=$'\t\n'
print_vars
IFS=$' \t\n'
This is the expected behavior when setting IFS. IMO not what the user expected.
IFS
$IFS=$'\t\n'
(' ' is missing) prevents printing an array in one line. This clash for eg. withprint_vars
function.IFS=$' \t\n'
. And we are done.