while IFS= read -r line; do COMMAND_on $line; done < input.file
这是更适合人类阅读的语法:
1 2 3 4 5 6 7
#!/bin/bash input="/path/to/txt/file" while IFS= read -r var do echo"$var" done < "$input"
示例
下面是一些例子:
1 2 3 4 5 6 7 8
#!/bin/ksh file="/home/vivek/data.txt" while IFS= read line do # display $line or do somthing with $line echo"$line" done <"$file"
在 bash shell 中相同的例子:
1 2 3 4 5 6 7 8
#!/bin/bash file="/home/vivek/data.txt" while IFS= read -r line do # display $line or do somthing with $line printf'%s\n'"$line" done <"$file"
你还可以看看这个更好的:
1 2 3 4 5 6 7 8
#!/bin/bash file="/etc/passwd" while IFS=: read -r f1 f2 f3 f4 f5 f6 f7 do # display fields using f1, f2,..,f7 printf'Username: %s, Shell: %s, Home Dir: %s\n'"$f1""$f7""$f6" done <"$file"
示例输出:
图01:Bash 脚本:读取文件并逐行输出文件
Bash 脚本:逐行读取文本文件并创建为 pdf 文件
我的输入文件如下(faq.txt):
1 2 3 4 5 6 7 8 9 10 11
4|http://www.cyberciti.biz/faq/mysql-user-creation/|Mysql User Creation: Setting Up a New MySQL User Account 4096|http://www.cyberciti.biz/faq/ksh-korn-shell/|What is UNIX / Linux Korn Shell? 4101|http://www.cyberciti.biz/faq/what-is-posix-shell/|What Is POSIX Shell? 17267|http://www.cyberciti.biz/faq/linux-check-battery-status/|Linux: Check Battery Status Command 17245|http://www.cyberciti.biz/faq/restarting-ntp-service-on-linux/|LinuxRestart NTPD Service Command 17183|http://www.cyberciti.biz/faq/ubuntu-linux-determine-your-ip-address/|Ubuntu Linux: Determine Your IP Address 17172|http://www.cyberciti.biz/faq/determine-ip-address-of-linux-server/|HowTo: Determine an IP Address My Linux Server 16510|http://www.cyberciti.biz/faq/unix-linux-restart-php-service-command/|Linux / Unix: Restart PHP Service Command 8292|http://www.cyberciti.biz/faq/mounting-harddisks-in-freebsd-with-mount-command/|FreeBSD: Mount Hard Drive / Disk Command 8190|http://www.cyberciti.biz/faq/rebooting-solaris-unix-server/|Reboot a Solaris UNIX System
#!/bin/bash # BASH can iterate over $list variable using a "here string" # while IFS= read -r pkg do printf'Installing php package %s...\n'"$pkg" /usr/bin/apt-get -qq install $pkg done <<< "$list" printf'*** Do not forget to run php5enmod and restart the server (httpd or php5-fpm) ***\n'