如何使用 Bash 遍历文本文件的每一行?
使用此脚本:
echo "Start!"
for p in (peptides.txt)
do
echo "${p}"
done
我在屏幕上得到这个输出:
Start!
./runPep.sh: line 3: syntax error near unexpected token `('
./runPep.sh: line 3: `for p in (peptides.txt)'
(稍后我想用 $p
做一些更复杂的事情,而不仅仅是输出到屏幕上。)
环境变量 SHELL 是(来自 env):
SHELL=/bin/bash
/bin/bash --version
输出:
GNU bash, version 3.1.17(1)-release (x86_64-suse-linux-gnu)
Copyright (C) 2005 Free Software Foundation, Inc.
cat /proc/version
输出:
Linux version 2.6.18.2-34-default (geeko@buildhost) (gcc version 4.1.2 20061115 (prerelease) (SUSE Linux)) #1 SMP Mon Nov 27 11:46:27 UTC 2006
文件肽.txt 包含:
RKEKNVQ
IPKKLLQK
QYFHQLEKMNVK
IPKKLLQK
GDLSTALEVAIDCYEK
QYFHQLEKMNVKIPENIYR
RKEKNVQ
VLAKHGKLQDAIN
ILGFMK
LEDVALQILL
awk
gnu.org/software/gawk/manual/gawk.html
一种方法是:
while read p; do
echo "$p"
done <peptides.txt
正如评论中所指出的,这具有修剪前导空格、解释反斜杠序列以及在缺少终止换行时跳过最后一行的副作用。如果有这些问题,您可以这样做:
while IFS="" read -r p || [ -n "$p" ]
do
printf '%s\n' "$p"
done < peptides.txt
特殊情况下,如果 loop body may read from standard input,您可以使用不同的文件描述符打开文件:
while read -u 10 p; do
...
done 10<peptides.txt
这里,10 只是一个任意数字(不同于 0、1、2)。
cat peptides.txt | while read line
do
# do something with $line here
done
和单线变体:
cat peptides.txt | while read line; do something_with_$line_here; done
如果没有尾随换行符,这些选项将跳过文件的最后一行。
您可以通过以下方式避免这种情况:
cat peptides.txt | while read line || [[ -n $line ]];
do
# do something with $line here
done
选项 1a:While 循环:一次一行:输入重定向
#!/bin/bash
filename='peptides.txt'
echo Start
while read p; do
echo "$p"
done < "$filename"
选项 1b:While 循环:一次一行:打开文件,从文件描述符(在本例中为文件描述符 #4)读取。
#!/bin/bash
filename='peptides.txt'
exec 4<"$filename"
echo Start
while read -u4 p ; do
echo "$p"
done
done < $filename
替换为 done 4<$filename
与选项 1a 中的输入重定向语法结合使用(如果您想从命令参数中读取文件名,这很有用,其中如果您可以将 $filename
替换为 $1
)。
tail -n +2 myfile.txt | grep 'somepattern' | cut -f3
;选项2似乎是唯一的方法?
这并不比其他答案更好,但这是在没有空格的文件中完成工作的另一种方法(请参阅评论)。我发现我经常需要单行程序来挖掘文本文件中的列表,而无需使用单独的脚本文件的额外步骤。
for word in $(cat peptides.txt); do echo $word; done
这种格式使我可以将它们全部放在一个命令行中。将“echo $word”部分更改为您想要的任何内容,您可以发出多个用分号分隔的命令。以下示例使用文件的内容作为您可能编写的其他两个脚本的参数。
for word in $(cat peptides.txt); do cmd_a.sh $word; cmd_b.py $word; done
或者,如果您打算像流编辑器(学习 sed)一样使用它,您可以将输出转储到另一个文件,如下所示。
for word in $(cat peptides.txt); do cmd_a.sh $word; cmd_b.py $word; done > outfile.txt
我使用了上面写的这些,因为我使用了文本文件,我在其中创建了它们,每行一个单词。 (见评论)如果你有空格,你不想分割你的单词/行,它会变得有点难看,但相同的命令仍然可以如下工作:
OLDIFS=$IFS; IFS=$'\n'; for line in $(cat peptides.txt); do cmd_a.sh $line; cmd_b.py $line; done > outfile.txt; IFS=$OLDIFS
这只是告诉 shell 只在换行符上拆分,而不是空格,然后将环境返回到以前的状态。此时,您可能需要考虑将其全部放入一个 shell 脚本中,而不是将其全部压缩到一行中。
祝你好运!
for
会使输入标记/行受到 shell 扩展的影响,这通常是不可取的;试试这个: for l in $(echo '* b c'); do echo "[$l]"; done
- 如您所见,*
- 即使最初是 quoted 文字 - 也会扩展到当前目录中的文件。
for
迭代文件行是一个坏主意。另外,@mklement0 提到的扩展方面(尽管这可能可以通过引入转义引号来规避,这再次使事情变得更加复杂且可读性降低)。
其他答案未涵盖的更多内容:
从分隔文件中读取
# ':' is the delimiter here, and there are three fields on each line in the file
# IFS set below is restricted to the context of `read`, it doesn't affect any other code
while IFS=: read -r field1 field2 field3; do
# process the fields
# if the line has less than three fields, the missing fields will be set to an empty string
# if the line has more than three fields, `field3` will get all the values, including the third field plus the delimiter(s)
done < input.txt
使用进程替换从另一个命令的输出中读取
while read -r line; do
# process the line
done < <(command ...)
这种方法比 command ... | while read -r line; do ...
更好,因为这里的 while 循环在当前 shell 中运行,而不是在后者的情况下运行在子 shell 中。请参阅相关帖子 A variable modified inside a while loop is not remembered。
从空分隔的输入中读取,例如 find ... -print0
while read -r -d '' line; do
# logic
# use a second 'read ... <<< "$line"' if we need to tokenize the line
done < <(find /path/to/dir -print0)
相关阅读:BashFAQ/020 - How can I find and safely handle file names containing newlines, spaces or both?
一次读取多个文件
while read -u 3 -r line1 && read -u 4 -r line2; do
# process the lines
# note that the loop will end when we reach EOF on either of the files, because of the `&&`
done 3< input1.txt 4< input2.txt
基于 @chepner's 答案 here:
-u
是一个 bash 扩展。对于 POSIX 兼容性,每个调用都类似于 read -r X <&3
。
将整个文件读入数组(早于 4 的 Bash 版本)
while read -r line; do
my_array+=("$line")
done < my_file
如果文件以不完整的行结尾(末尾缺少换行符),则:
while read -r line || [[ $line ]]; do
my_array+=("$line")
done < my_file
将整个文件读入数组(Bash 版本 4x 及更高版本)
readarray -t my_array < my_file
或者
mapfile -t my_array < my_file
接着
for line in "${my_array[@]}"; do
# process the lines
done
更多关于 shell 内置的 read 和 readarray 命令 - GNU
更多关于 IFS - 维基百科
BashFAQ/001 - 如何逐行(和/或逐字段)读取文件(数据流、变量)?
相关文章:
在 Bash 中从文本文件创建数组
读取只有一行的文件的方法有什么区别?
与 cat 相比,Bash while read 循环非常慢,为什么?
input_generating_command | command
或 command < <(input_generating_command)
而不是 command < input_filename.txt
使用 while 循环,如下所示:
while IFS= read -r line; do
echo "$line"
done <file
笔记:
如果您没有正确设置 IFS,您将失去缩进。您几乎应该始终将 -r 选项与 read 一起使用。不要用 for 阅读行
Note #2
是详细描述的链接...
-u
选项,您是在谈论 -u
的另一个示例吗?
假设你有这个文件:
$ cat /tmp/test.txt
Line 1
Line 2 has leading space
Line 3 followed by blank line
Line 5 (follows a blank line) and has trailing space
Line 6 has no ending CR
有四个元素会改变许多 Bash 解决方案读取的文件输出的含义:
第 4 行空白;两行前导或尾随空格;维护各行的含义(即,每一行都是一条记录);第 6 行没有以 CR 结束。
如果您希望文本文件逐行包括空白行和没有 CR 的终止行,则必须使用 while 循环,并且必须对最后一行进行替代测试。
以下是可能更改文件的方法(与 cat
返回的方法相比):
1)丢失最后一行以及前导和尾随空格:
$ while read -r p; do printf "%s\n" "'$p'"; done </tmp/test.txt
'Line 1'
'Line 2 has leading space'
'Line 3 followed by blank line'
''
'Line 5 (follows a blank line) and has trailing space'
(如果您改为使用 while IFS= read -r p; do printf "%s\n" "'$p'"; done </tmp/test.txt
,则保留前导和尾随空格,但如果最后一行未以 CR 终止,则仍会丢失最后一行)
2) 使用带有 cat
的进程替换将一口气读取整个文件并失去各行的含义:
$ for p in "$(cat /tmp/test.txt)"; do printf "%s\n" "'$p'"; done
'Line 1
Line 2 has leading space
Line 3 followed by blank line
Line 5 (follows a blank line) and has trailing space
Line 6 has no ending CR'
(如果您从 $(cat /tmp/test.txt)
中删除 "
,您会逐字阅读文件,而不是一饮而尽。也可能不是预期的......)
逐行读取文件并保留所有间距的最可靠和最简单的方法是:
$ while IFS= read -r line || [[ -n $line ]]; do printf "'%s'\n" "$line"; done </tmp/test.txt
'Line 1'
' Line 2 has leading space'
'Line 3 followed by blank line'
''
'Line 5 (follows a blank line) and has trailing space '
'Line 6 has no ending CR'
如果要去除前导和换行空格,请删除 IFS=
部分:
$ while read -r line || [[ -n $line ]]; do printf "'%s'\n" "$line"; done </tmp/test.txt
'Line 1'
'Line 2 has leading space'
'Line 3 followed by blank line'
''
'Line 5 (follows a blank line) and has trailing space'
'Line 6 has no ending CR'
(没有终止 \n
的文本文件虽然很常见,但在 POSIX 下被认为是损坏的。如果您可以依靠结尾的 \n
,则在 while
循环中不需要 || [[ -n $line ]]
。)
BASH FAQ 上的更多信息
如果您不希望您的阅读被换行符破坏,请使用 -
#!/bin/bash
while IFS='' read -r line || [[ -n "$line" ]]; do
echo "$line"
done < "$1"
然后以文件名作为参数运行脚本。
这可能是最简单的答案,也许并非在所有情况下都有效,但对我来说效果很好:
while read line;do echo "$line";done<peptides.txt
如果您需要用括号括起来空格:
while read line;do echo \"$line\";done<peptides.txt
啊,这与获得最多投票的答案几乎相同,但都在一条线上。
我喜欢使用 xargs
而不是 while
。 xargs
功能强大且命令行友好
cat peptides.txt | xargs -I % sh -c "echo %"
使用 xargs
,您还可以使用 -t
添加详细程度并使用 -p
添加验证
peptides.txt
包含无法转义到 $(rm -rf ~)
或更糟的是 $(rm -rf ~)'$(rm -rf ~)'
的内容怎么办?
#!/bin/bash
#
# Change the file name from "test" to desired input file
# (The comments in bash are prefixed with #'s)
for x in $(cat test.txt)
do
echo $x
done
这是我的真实示例,如何循环另一个程序输出的行、检查子字符串、从变量中删除双引号、在循环外使用该变量。我想很多人迟早会问这些问题。
##Parse FPS from first video stream, drop quotes from fps variable
## streams.stream.0.codec_type="video"
## streams.stream.0.r_frame_rate="24000/1001"
## streams.stream.0.avg_frame_rate="24000/1001"
FPS=unknown
while read -r line; do
if [[ $FPS == "unknown" ]] && [[ $line == *".codec_type=\"video\""* ]]; then
echo ParseFPS $line
FPS=parse
fi
if [[ $FPS == "parse" ]] && [[ $line == *".r_frame_rate="* ]]; then
echo ParseFPS $line
FPS=${line##*=}
FPS="${FPS%\"}"
FPS="${FPS#\"}"
fi
done <<< "$(ffprobe -v quiet -print_format flat -show_format -show_streams -i "$input")"
if [ "$FPS" == "unknown" ] || [ "$FPS" == "parse" ]; then
echo ParseFPS Unknown frame rate
fi
echo Found $FPS
在循环外声明变量,设置值并在循环外使用它需要完成 <<< "$(...)" 语法。应用程序需要在当前控制台的上下文中运行。命令周围的引号保留输出流的换行符。
子字符串的循环匹配然后读取 name=value 对,拆分 last = 字符的右侧部分,删除第一个引号,删除最后一个引号,我们有一个干净的值可以在其他地方使用。
@Peter:这对你有用-
echo "Start!";for p in $(cat ./pep); do
echo $p
done
这将返回输出 -
Start!
RKEKNVQ
IPKKLLQK
QYFHQLEKMNVK
IPKKLLQK
GDLSTALEVAIDCYEK
QYFHQLEKMNVKIPENIYR
RKEKNVQ
VLAKHGKLQDAIN
ILGFMK
LEDVALQILL
这来得很晚,但考虑到它可能对某人有帮助,我正在添加答案。此外,这可能不是最好的方法。 head
命令可以与 -n
参数一起使用以从文件开头读取 n 行,同样可以使用 tail
命令从底部读取。现在,为了从文件中获取第 nth 行,我们开始 n 行,将数据通过管道传输到管道数据的尾部仅 1 行。
TOTAL_LINES=`wc -l $USER_FILE | cut -d " " -f1 `
echo $TOTAL_LINES # To validate total lines in the file
for (( i=1 ; i <= $TOTAL_LINES; i++ ))
do
LINE=`head -n$i $USER_FILE | tail -n1`
echo $LINE
done
sed
或 head
+ tail
获取每一行是难以置信效率低下,当然提出了一个问题,为什么您不在这里简单地使用其他解决方案之一。如果您需要知道行号,请在 while read -r
循环中添加一个计数器,或使用 nl -ba
在循环之前的每一行中添加一个行号前缀。
另一种使用 xargs 的方法
<file_name | xargs -I {} echo {}
echo 可以用其他命令替换或进一步管道。
每埃德莫顿,Why is using a shell loop to process text considered bad practice?
答案是:不要使用 bash 处理文本,使用为此任务设计的工具 awk
在 bash 中处理文本。
https://www.gnu.org/software/gawk/manual/gawk.html
#! /usr/bin/env awk -f
BEGIN { print("do anything you want here!"); }
{
print("processing line: ", $0);
}
END { print("and anything else here!") };
并调用:
./awk-script.awk peptides.txt
在 bash 脚本中:
#!/usr/bin/env bash
echo "foo" | awk "{print}"
while read p || [[ -n $p ]]; do ...