Linux下将数据文件的指定域读取到shell脚本中

痕风 2013年3月24日00:34:28
评论
63

这个例子说明了怎样在Linux下shell脚本中从数据文件读取特定的域(field)并进行操作。例如,假设文件employees.txt的格式是{employee-name}:{employee-id}:{department-name},以冒号进行划分,如下所示。

$ cat employees.txt  Emma Thomas:100:Marketing  Alex Jason:200:Sales  Madison Randy:300:Product Development  Sanjay Gupta:400:Support  Nisha Singh:500:Sales

下面的shell脚本说明了如何从这个employee.txt文件中读取特定的域(field)。

$ vi read-employees.sh  #!/bin/bash  IFS=:  echo "Employee Names:"  echo "---------------"  while read name empid dept  do      echo "$name is part of $dept department"  done < ~/employees.txt

赋予脚本可执行权限后执行该脚本

$ chmod u+x read-employees.sh  $ ./read-employees.sh  Employee Names:  ---------------  Emma Thomas is part of Marketing department  Alex Jason is part of Sales department  Madison Randy is part of Product Development department  Sanjay Gupta is part of Support department  Nisha Singh is part of Sales department

【编辑推荐】

继续阅读
weinxin
痕风的起点
专注于互联网资讯、中央空调、Windows、wordpress、建站技术、软件应用等相关网络资源的分享。
匿名

发表评论

匿名网友 填写信息

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: