在 Linux、OSX、 *BSD 或者类 Unix 系统下你可以使用 while..do..done 的 bash 循环来逐行读取一个文件。下面跟着我一起来了解一下在 Linux 或类闷粗察 UNIX 系统下如何使用 KSH 或 BASH shell 逐行读取一个文件吧。
Bash逐行读取一个文件 方法
对于 bash、ksh、 zsh 和其他的 shells 语法如下
while read -r linedo COMMANDdone <input.file
通过 -r 选项传递给 read 命令以防止阻止解释其中的反斜杠转义符。
在 read 命令之前添加 IFS= 选项,来防止首尾的空白字符被去掉。
while IFS= read -r linedo COMMAND_on $linedone <input.file
这是更适合人类阅读的语法:
#!/bin/bashinput="/path/to/txt/file"while IFS= read -r vardo echo "$var"done <"$input"
下面是一些例子:
#!/bin/kshfile="/home/vivek/data.txt"while IFS= read linedo # display $line or do somthing with $line echo "$line"done <"$file"
凳桐在 bash shell 中相同的例子:
#!/bin/bashfile="/home/vivek/data.txt"while IFS= read -r linedo # display $line or do somthing with $line printf '%s\n' "$line"done <"$file"
你还可以看看这个更好的:
#!/bin/bashfile="/etc/passwd"while IFS=: read -r f1 f2 f3 f4 f5 f6 f7do # 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):
我的 bash 脚本:
技巧:从 bash 变量中读取
让我们看看如何在 Debian 或者 Ubuntu Linux 下列出所有安装过的 php 包,请输入:
示例输出:
你现在可以从 $list 中看到它们,并安装这些包:
示例输出:
#!/bin/bash
File="a.txt"
OutPut="insert.sql"
while read line
do
echo "insert into table_name (mark) values('${line}'搜宽)" >宏大 ${OutPut}
done <${File}
当前目录a.txt读入世绝亮,output为 insert.sql
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)