linux文档颜色对应文档类型、通配符

## 蓝色 目录

## 黑色 文件

## 绿色 可执行程序

## 青色 快捷方式

## 红色 压缩包

## 通配符

**星号(\*):** 匹配任意多的字符 可以没有

“`
[root@control opt]# ls 1*.txt
12.txt 1.txt

“`

**问号(?):** 匹配任意一个字符 必须有

“`
[root@control opt]# ls 1?.txt
12.txt

“`

**中括号([]):** 匹配指定范围内的任意一个字符

“`

[root@control opt]# ls 1[0-9a-zA-Z].txt
12.txt

“`

**大括号([]):** 匹配指定字符串中的任意一个字符串

“`

[root@control opt]# ls 1{12,2}.txt
ls: 无法访问’112.txt’: 没有那个文件或目录
12.txt

“`

评论