Linux上shell脚本匹配不包含特定字符串的文件名
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
举个栗子:
比如要匹配当前目录下文件包含php但是不以.tar.gz结尾的文件名: 可以这样做
ls | grep php | grep -v .tar.gz
解释:
ls: 列出当前目录下所有的文件名
grep php: 匹配所有包含php字符的文件名
grep -v .tar.gz: -v参数表示选出不匹配的文件名
此外如果想用于shell脚本判断包含php但有不以.tar.gz结尾的文件名是否存在, 可以这样写
if ls | grep php | grep -qv .tar.gz ; then
echo " 存在这样的文件"
else
echo " 不存在"
fi
其中 q参数是不将匹配到的结果输出
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献5条内容
所有评论(0)