linux的shell脚本的通配符使用方法
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
#!/bin/bash
#author: *****
#date :
#Email : ****@***
# 通配符
#
# ? 任意单个字符
# * 任意0个或多个字符
# [ ] 匹配方括号中的任意一个字符,如[abc] 则匹配abc中的一个
# [ - ] "-"代表范围,例如:[a-z] 则匹配任意一个小写字母; [0-9] 则匹配任意一个0-9之间的数据,但是注意[0-10]不可以,不能超过9
# [^] 逻辑非. 例如: [^0-9]匹配任意一个非数字字符
# 创建20个文件
for i in $(seq 1 1 20)
do
echo i > file${i}
done
# 删除file1 file2 ... file5
rm file[1-5]
touch a1 a2
# 删除a开头的所有文件
rm a*
# 删除a2 b2 c2
touch c1 c2
rm [abc]2
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 年前
更多推荐
已为社区贡献2条内容
所有评论(0)