gpt4 book ai didi

shell - 如何在ubuntu中逐行流水线

转载 作者:行者123 更新时间:2023-12-04 19:12:57 24 4
gpt4 key购买 nike

例如,我有一个代码可以在当前文件夹中找到我没有 .在前面:

find . -maxdepth 1 -type d -regex '\./[^.]*$'

然而,它给了我
./Templates
./eclipse-workspace
./Public
./Documents
./VirtualBox VMs
./Videos
./CLionProjects
./jd2

我需要去做
du -sh

对于它们中的每一行,我该怎么办?

最佳答案

虽然 中内置了 -exec 命令查找 ,很难使用(见Why does find -exec mv {} ./target/ + not work ? (on cygwin))。

您正在寻找的是这个管道命令:

find . -maxdepth 1 -type d -regex '\./[^.]*$' | cut -c 3-

随时 查找 命令输出一些东西, 发生了。

关于shell - 如何在ubuntu中逐行流水线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48491290/

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