在用read读取管道传过来的数据的时候,默认的IFS是空格,例如
[[email protected] ~]$ echo ‘hello;Na than‘ | while read fist last; do echo $last, $fist;done than, hello;Na
如果我们要使用;作为新的分割符,则要指定IFS,通常是在read之前,例如:
[[email protected] ~]$ echo ‘hello;Na than‘ | while IFS=‘;‘ read fist last; do echo $last, $fist;done Na than, hello
这样,就成功了。
时间: 2024-10-08 08:18:55