Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有很多数据文件要处理,但没有必要处理每个文件中的每条记录。有没有办法指示awk停止处理当前文件并跳到下一个文件?
awk
您可以使用 nextfile 语句,许多 awks 都支持它(也许 Solaris 除外)
$ awk '/4/{nextfile} 1' <(seq 10) <(seq 10) 1 2 3 1 2 3