码迷,mamicode.com
首页 > 其他好文 > 详细

分隔符IFS

时间:2020-03-04 00:36:59      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:bash   man   ash   font   done   and   line   lin   com   

关键词:IFS

作用:自定义分隔符

脚本:

[root@test tansk]# cat test.sh 
#!/bin/bash 
  IFS
num=$( cat /root/tansk/ifs.txt )
IFS=,
for i in $num
do
echo "*******$i******"
done

[root@test tansk]# cat ifs.txt 
a,b,c,d,f,g

实现效果:

[root@test tansk]# ./test.sh 
./test.sh: line 2: IFS: command not found
*******a******
*******b******
*******c******
*******d******
*******f******
*******g******
[root@test tansk]#

 

分隔符IFS

标签:bash   man   ash   font   done   and   line   lin   com   

原文地址:https://www.cnblogs.com/tanshouke/p/12405545.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!