小试 IFS 环境变量

今晚看《Linux Command Line and Shell Scrpiting Bible 2nd editon》说到了 internal field separator(内部字段分隔符),然后我研究了一下,因为我有点疑惑,百度了一下,最终解决了

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash
file="/home/tcstory/desktop/states"
ifs=$IFS
#IFS.OLD=$IFS 在这里 我不能用xxx.xxx来接收值,但是书上就是这么写的,可能是终端的类型不同,我这个不是ubuntu默认的模拟终端器
IFS=$'\n'
if [ -f $file ];then
for state in `cat $file`
do
echo "Visit beautiful $state"
done
else
echo The file does not exist.!
fi
IFS=:!$'\040'
var1="Hello:world!take your time"
for word in $var1
do
echo $word
done

  说一下我的疑惑,在给IFS赋值的时候,如果要赋予的是空格 制服表 和 换行符 ,那么必须用IFS=$’\n’ IFS=$’\t’ 或则 IFS=$’\040’ 的形式,如果是普通的字符就不用 例如 IFS=: ;(冒号 感叹号) 我研究了一下,自己在终端输入了 如下命令

echo $’\n’

echo $’\t’

echo $’\040’

他们确实打印出了相应的空白行,所以,这就验证了,想得到换行符 制服表 和空格 就必须用上面的那种形式才能正确的赋值