Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一个需要具有多个内部字段分隔符值的 shell 程序 - <newline><tab><.><space>. 有没有办法将所有这些分配给 IFS?另外,我在这里不是在谈论 awk。
<newline><tab><.><space>
在 bash 中,您可以像这样重新分配这些多个值:
IFS=$'\n\t. '
在其他 shell 中,您必须手动执行或使用其他外部命令来生成它:
IFS=" . "