Bash 下如何逐行读取一个文件

本文涉及的产品
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
云数据库 RDS PostgreSQL,集群系列 2核4GB
简介:

在 Linux 或类 UNIX 系统下如何使用 KSH 或 BASH shell 逐行读取一个文件?

在 Linux、OSX、 *BSD 或者类 Unix 系统下你可以使用 ​​while..do..done 的 bash 循环来逐行读取一个文件。

在 Bash Unix 或者 Linux shell 中逐行读取一个文件的语法

对于 bash、ksh、 zsh 和其他的 shells 语法如下

 
  1. while read -r line; do COMMAND; done < input.file

通过 -r 选项传递给 read 命令以防止阻止解释其中的反斜杠转义符。

在 read 命令之前添加 IFS= 选项,来防止首尾的空白字符被去掉。

 
  1. while IFS= read -r line; do COMMAND_on $line; done < input.file

这是更适合人类阅读的语法:

 
  1. #!/bin/bash
  2. input="/path/to/txt/file"
  3. while IFS= read -r var
  4. do
  5. echo "$var"
  6. done < "$input"

示例

下面是一些例子:

 
  1. #!/bin/ksh
  2. file="/home/vivek/data.txt"
  3. while IFS= read line
  4. do
  5. # display $line or do somthing with $line
  6. echo "$line"
  7. done <"$file"

在 bash shell 中相同的例子:

 
  1. #!/bin/bash
  2. file="/home/vivek/data.txt"
  3. while IFS= read -r line
  4. do
  5. # display $line or do somthing with $line
  6. printf '%s\n' "$line"
  7. done <"$file"

你还可以看看这个更好的:

 
  1. #!/bin/bash
  2. file="/etc/passwd"
  3. while IFS=: read -r f1 f2 f3 f4 f5 f6 f7
  4. do
  5. # display fields using f1, f2,..,f7
  6. printf 'Username: %s, Shell: %s, Home Dir: %s\n' "$f1" "$f7" "$f6"
  7. done <"$file"

示例输出:

图01:Bash 脚本:读取文件并逐行输出文件

图01:Bash 脚本:读取文件并逐行输出文件

Bash 脚本:逐行读取文本文件并创建为 pdf 文件

我的输入文件如下(faq.txt):

 
  1. 4|http://www.cyberciti.biz/faq/mysql-user-creation/|Mysql User Creation: Setting Up a New MySQL User Account
  2. 4096|http://www.cyberciti.biz/faq/ksh-korn-shell/|What is UNIX / Linux Korn Shell?
  3. 4101|http://www.cyberciti.biz/faq/what-is-posix-shell/|What Is POSIX Shell?
  4. 17267|http://www.cyberciti.biz/faq/linux-check-battery-status/|Linux: Check Battery Status Command
  5. 17245|http://www.cyberciti.biz/faq/restarting-ntp-service-on-linux/|Linux Restart NTPD Service Command
  6. 17183|http://www.cyberciti.biz/faq/ubuntu-linux-determine-your-ip-address/|Ubuntu Linux: Determine Your IP Address
  7. 17172|http://www.cyberciti.biz/faq/determine-ip-address-of-linux-server/|HowTo: Determine an IP Address My Linux Server
  8. 16510|http://www.cyberciti.biz/faq/unix-linux-restart-php-service-command/|Linux / Unix: Restart PHP Service Command
  9. 8292|http://www.cyberciti.biz/faq/mounting-harddisks-in-freebsd-with-mount-command/|FreeBSD: Mount Hard Drive / Disk Command
  10. 8190|http://www.cyberciti.biz/faq/rebooting-solaris-unix-server/|Reboot a Solaris UNIX System

我的 bash 脚本:

 
  1. #!/bin/bash
  2. # Usage: Create pdf files from input (wrapper script)
  3. # Author: Vivek Gite <Www.cyberciti.biz> under GPL v2.x+
  4. #---------------------------------------------------------
  5. #Input file
  6. _db="/tmp/wordpress/faq.txt"
  7. #Output location
  8. o="/var/www/prviate/pdf/faq"
  9. _writer="~/bin/py/pdfwriter.py"
  10. # If file exists
  11. if [[ -f "$_db" ]]
  12. then
  13. # read it
  14. while IFS='|' read -r pdfid pdfurl pdftitle
  15. do
  16. local pdf="$o/$pdfid.pdf"
  17. echo "Creating $pdf file ..."
  18. #Genrate pdf file
  19. $_writer --quiet --footer-spacing 2 \
  20. --footer-left "nixCraft is GIT UL++++ W+++ C++++ M+ e+++ d-" \
  21. --footer-right "Page [page] of [toPage]" --footer-line \
  22. --footer-font-size 7 --print-media-type "$pdfurl" "$pdf"
  23. done <"$_db"
  24. fi

技巧:从 bash 变量中读取

让我们看看如何在 Debian 或者 Ubuntu Linux 下列出所有安装过的 php 包,请输入:

 
  1. # 我将输出内容赋值到一个变量名为 $list #
  2. list=$(dpkg --list php\* | awk '/ii/{print $2}')
  3. printf '%s\n' "$list"

示例输出:

 
  1. php-pear
  2. php5-cli
  3. php5-common
  4. php5-fpm
  5. php5-gd
  6. php5-json
  7. php5-memcache
  8. php5-mysql
  9. php5-readline
  10. php5-suhosin-extension

你现在可以从 $list 中看到它们,并安装这些包:

 
  1. #!/bin/bash
  2. # BASH can iterate over $list variable using a "here string" #
  3. while IFS= read -r pkg
  4. do
  5. printf 'Installing php package %s...\n' "$pkg"
  6. /usr/bin/apt-get -qq install $pkg
  7. done <<< "$list"
  8. printf '*** Do not forget to run php5enmod and restart the server (httpd or php5-fpm) ***\n'

示例输出:

 
  1. Installing php package php-pear...
  2. Installing php package php5-cli...
  3. Installing php package php5-common...
  4. Installing php package php5-fpm...
  5. Installing php package php5-gd...
  6. Installing php package php5-json...
  7. Installing php package php5-memcache...
  8. Installing php package php5-mysql...
  9. Installing php package php5-readline...
  10. Installing php package php5-suhosin-extension...
  11. *** Do not forget to run php5enmod and restart the server (httpd or php5-fpm) ***
  12. 本文来自云栖社区合作伙伴“Linux中国”,原文发布日期:2015-08-31
相关实践学习
如何在云端创建MySQL数据库
开始实验后,系统会自动创建一台自建MySQL的 源数据库 ECS 实例和一台 目标数据库 RDS。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助 &nbsp; &nbsp; 相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
目录
相关文章
|
5月前
|
Shell
百度搜索:蓝易云【Ros终端出现找不到bash: /home/***/devel/setup.bash: 没有那个文件或目录怎么办?】
通过以上步骤,您应该能够解决 "找不到bash: /home/ *** /devel/setup.bash: 没有那个文件或目录" 错误,并正常使用ROS环境。如果问题仍然持续存在,建议您检查您的ROS安装和配置,并参考ROS官方文档或ROS社区寻求帮助。
261 0
|
5月前
|
Java Shell Linux
解决 centos下执行sh文件报错“/bin/bash^M: 坏的解释器:没有那个文件或目录” 问题
解决 centos下执行sh文件报错“/bin/bash^M: 坏的解释器:没有那个文件或目录” 问题
839 0
|
2月前
|
Shell 数据处理
Bash 中检查文件是否包含字符串
【8月更文挑战第27天】
30 5
|
4月前
|
关系型数据库 MySQL Shell
进入mysql报错:bash:/bin/mysql:没有那个文件或目录
进入mysql报错:bash:/bin/mysql:没有那个文件或目录
187 4
|
5月前
|
Shell
|
5月前
|
Linux Shell
百度搜索:蓝易云【Linux(centos7)缺失.bashrc文件登录出现bash-4.2解决教程。】
或者你可以注销并重新登录系统,也会加载新的 `.bashrc` 文件。现在,你应该能够成功解决 "bash-4.2" 错误并登录到 CentOS 7 系统中。
104 0
|
11月前
|
存储 Unix Shell
如何在Bash中逐行读取文件?
如何在Bash中逐行读取文件?
211 0
|
Shell Python
-bash: /usr/bin/yum: /usr/bin/python: 坏的解释器: 没有那个文件或目录
-bash: /usr/bin/yum: /usr/bin/python: 坏的解释器: 没有那个文件或目录
-bash: /usr/bin/yum: /usr/bin/python: 坏的解释器: 没有那个文件或目录
|
Shell Python
yum报错:bash: /usr/bin/yum: /usr/bin/python: 坏的解释器:没有那个文件或目录
yum报错:bash: /usr/bin/yum: /usr/bin/python: 坏的解释器:没有那个文件或目录
2050 0
yum报错:bash: /usr/bin/yum: /usr/bin/python: 坏的解释器:没有那个文件或目录
|
Shell Linux Windows
-bash usrlocalbindfs binbash^M bad interpreter 没有那个文件或目录
-bash usrlocalbindfs binbash^M bad interpreter 没有那个文件或目录
98 0