lhunath 1243450227 learn redirect $' lhunath 1243450273 forget lhunath 1243450280 learn #redirect $' ormaaj 1373191516 forget ormaaj 1373191757 learn A special form of quoting, $'string' in which backslash escape sequences are interpreted similarly to C string literals. For example, IFS=$' \t\n' or echo $'It\'s embedded!' http://wiki.bash-hackers.org/syntax/quoting#ansi_c_like_strings geirha 1404223297 forget geirha 1404223310 learn #redirect $' jetchisel 1746147132 forget jetchisel 1746147160 learn Bash has a special quoting form: $'string', which expands backslash-character combination are expanded. For example: IFS=$' \t\n' or echo $'It\'s embedded!' http://mywiki.wooledge.org/Quotes As of POSIX.1-2024, this $'...' quoting form is officially part of the POSIX Shell Command Language: https://pubs.opengroup.org/onlinepubs/9799919799/utilities/V3_chap02.html#tag_19_02_04 monkfish 1746147756 forget monkfish 1746147766 learn Bash has a special quoting form: $'string', which expands backslash-character combinations. For example, IFS=$' \t\n' or echo $'It\'s embedded!'. See http://mywiki.wooledge.org/Quotes. As of POSIX.1-2024, this form of quoting is also a feature of the Shell Command Language: https://pubs.opengroup.org/onlinepubs/9799919799/utilities/V3_chap02.html#tag_19_02_04