天天看点

字段分隔符IFS

IFS(Internal Field Seperator)在Linux的shell中预设的分隔符,用来把command line分解成word(字段)。

IFS可以是White Space(空白键)、Tab( 表格键)、Enter( 回车键)中的一个或几个。

IFS是shell脚本中的一个重要概念,在处理文本数据时,它是相当有用的。内部字段分隔符是用于特定用途的定界符。

IFS是存储定界符的环境变量,它是当前shell环境使用的默认定界字符串。

IFS的设置方法很简单,和普通变量设置方法类似:

IFS=":"

建议设置IFS前保存原IFS的值,在使用后及时恢复。

使用ifs忽略换行符的示例代码如下:

#!/bin/bash
file="university"
IFS=$'\n'
for university in `cat $file`
do
        echo "nanjing has famous university of $university"
done
~       
           

university的内容如下:

[[email protected] shell]# cat university
southeast universiyt
nanjing university
nanshida
nanhang
nanligong
           

执行结果如下:

[email protected] shell]# ./ifs.sh 
nanjing has famous university of southeast universiyt
nanjing has famous university of nanjing university
nanjing has famous university of nanshida
nanjing has famous university of nanhang
nanjing has famous university of nanligong
           

在处理长脚本时,可能在一个地方修改IFS的值,然后忘掉它了并在脚本其他地方以为还是默认的值。

一个可参考的简单实践在改变IFS之前保存原来IFS值,在后再恢复它。

这种技术可以这样编程:

IFS.OLD=$IFS

IFS=$'\n'

<use ...............>

IFS=$IFS.OLD

上一篇: shell数组 IFS
下一篇: shell IFS