I hopefully would like to say I understand quotings used in BASH and their difference , " "
, ' '
, $' '
.
I saw many shell scripts containing
IFS=$'\n'
but NO
IFS="\n"
It looks at least to me that there is no difference. and in my environment both work correctly (for my understanding), What difference is here? Is it just a custom?