reset - 为什么不能重置 IFS 变量?

标签 reset ifs

显示当前变量IFS:

echo $IFS |xxd
00000000: 0a  

我想将 IFS 重置为默认值 \t\n

IFS=$' \t\n'
echo $IFS |xxd
00000000: 0a  

为什么不能重置 IFS 变量?

最佳答案

您正在重置 IFS正确。问题出在你的echo .你应该使用 echo -n "$IFS" | xxd .

看看man bash (强调我的):

Word Splitting

The shell scans the results of parameter expansion, command substitution, and arithmetic expansion that did not occur within double quotes for word splitting.

The shell treats each character of IFS as a delimiter, and splits the results of the other expansions into words on these characters. If IFS is unset, or its value is exactly <space><tab><newline>, the default, then sequences of <space>, <tab>, and <newline> at the beginning and end of the results of the previous expansions are ignored, and any sequence of IFS characters not at the beginning or end serves to delimit words. If IFS has a value other than the default, then sequences of the whitespace characters space and tab are ignored at the beginning and end of the word, as long as the whitespace character is in the value of IFS (an IFS whitespace character). Any character in IFS that is not IFS whitespace, along with any adjacent IFS whitespace characters, delimits a field. A sequence of IFS whitespace characters is also treated as a delimiter. If the value of IFS is null, no word splitting occurs.

因为你没有双引号 IFS ,它通过 shell 的分词逻辑。自 IFS根据定义包含 IFS自身内部的字符,它们会被 shell 忽略。双引号可以防止这种情况。

关于reset - 为什么不能重置 IFS 变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62470380/

相关文章:

linux - 如何阻止 `read` 与 `IFS` 将空白字符合并在一起?

bash - 将 IFS 设置为 $'\n' 和 $'\n' 之间的区别

bash: `read` 似乎不支持 IFS

jQuery - 让重置按钮起作用

php - 重新打开 : PHP array_shift(); VS reset(); unset(); array_splice();

c++ - 将清除共享智能指针上的调用重置

css - 24% 宽度的 4 列 DIV 不会一直延伸到我的 100% 屏幕宽度 div

c - MSP430 随机复位 'Security Violation (BOR)'

Bash while 循环读取和 IFS

Linux 狂欢。从读取文件行的​​ while 循环内部发送 mailx