ls 搜索过滤资源

ls 文件较多的时候,需要搜索过渡一些资源
更新于: 2021-11-19 14:43:16
## 以 abc 开头的
ls -d abc*   # list all files starting with abc---
## 含有 abc
ls -d *abc*  # list all files containing --abc--
## 以 abc 结尾
ls -d *abc   # list all files ending with --abc