gpt4 book ai didi

bash - 如何在bash中找到没有点的目录?

转载 作者:行者123 更新时间:2023-12-04 16:48:16 27 4
gpt4 key购买 nike

我尝试查找没有点符号的文件夹。
我通过这个脚本在用户目录中搜索它:

!#/bin/bash

users=$(ls /home)

for user in $users;

do

find /home/$user/web/ -maxdepth 1 -type d -iname '*' ! -iname "*.*"

done

但我在结果用户中看到带有点的文件夹,例如 - test.uk 或 test.cf

我做错了什么?

提前致谢!

最佳答案

您可以使用 find-regex选项:

find /home/$user/web/ -maxdepth 1 -type d -regex '\./[^.]*$'
'\./[^.]*$'将匹配没有任何 DOT 的名称。

关于bash - 如何在bash中找到没有点的目录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34621953/

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