1 ls -l | grep -i fira
2 
3 -rw-r--r-- 1 用户名 197121   164824 Feb 27 16:36 FiraCode-Bold.otf
4 -rw-r--r-- 1 用户名 197121   252032 Nov  6  2016 FiraCode-Bold_01.ttf

ls 列出文件目录,-l 显示详情,| 管道符将左边的结果输入右边,

grep(global search regular expression(RE) and print out the line,

全面搜索正则表达式并把行打印出来)使用正则表达式搜索文本,并把匹配的行打印出来,

-i 不区分大小写,fira 这个是查找关键字。

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-07-07
  • 2021-12-14
  • 2022-03-05
  • 2022-12-23
  • 2021-12-05
  • 2022-12-23
猜你喜欢
  • 2021-04-28
  • 2022-12-23
  • 2021-05-31
  • 2022-12-23
  • 2021-11-04
  • 2022-12-23
相关资源
相似解决方案