• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

bash脚本 - 遍历查找的输出

用户头像
it1352
帮助1

问题说明

我有,我需要遍历find命令的输出中的每行一个bash脚本,但现在看来,我遍历从find命令每个单词(分隔空间)。我的脚本看起来像这样至今:

I have a bash script in which I need to iterate over each line of the ouput of the find command, but it appears that I am iterating over each Word (space delimited) from the find command. My script looks like this so far:

folders=`find -maxdepth 1 -type d`

for $i in $folders
do
    echo $i
done

我希望这给像输出:

I would expect this to give output like:

./dir1 and foo
./dir2 and bar
./dir3 and baz

但我insted的获得输出是这样的:

But I am insted getting output like this:

./dir1
and
foo
./dir2
and
bar
./dir3
and
baz

我在做什么错在这里?

What am I doing wrong here?

正确答案

#1

找到,你可以使用一个简单的模式遍历子目录:

Since you aren't using any of the more advanced features of find, you can use a simple pattern to iterate over the subdirectories:

for i in ./*/; do
    echo "$i"
done

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcfchke
系列文章
更多 icon
同类精品
更多 icon
继续加载