What is the exact meaning of IFS=$'\n'?
问题 If the following example, which sets the IFS environment variable to a line feed character... IFS=$\'\\n\' What does the dollar sign mean exactly ? What does it do in this specific case? Where can I read more on this specific usage (Google doesn\'t allow special characters in searches and I don\'t know what to look for otherwise)? I know what the IFS environment variable is, and what the \\n character is (line feed), but why not just use the following form: IFS=\"\\n\" (which does not work)?