gpt4 book ai didi

bash - 如何处理 bash 中的每个第二个文件?

转载 作者:行者123 更新时间:2023-11-29 08:58:22 24 4
gpt4 key购买 nike

我有一个包含几十个文件的目录。我想对这个目录中的每个第二个文件做一些事情。到目前为止,我只使用了 find 命令,但是我用这个命令处理了所有文件:

find ./dir/ -type f -exec cat {} \;

最佳答案

for file in `find dir -type f | awk 'NR % 2 == 0'`; do
echo $file
done

NR 是当前行号。要获取奇数行,请使用 ... == 1

关于bash - 如何处理 bash 中的每个第二个文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4553751/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com