ls -l | grep -i fira -rw-r--r-- 用户名 Feb : FiraCode-Bold.otf -rw-r--r-- 用户名 Nov FiraCode-Bold_01.ttf ls 列出文件目录,-l 显示详情,| 管道符将左边的结果输入右边, grep(global search regular expression(RE) and print out the line, 全面搜索正则表达式并把行打印出来)使用正则表达式搜索文本,并把匹配的行打印出来, -i 不区分大小…
Linux grep命令用于查找文件里符合条件的字符串.是文本检索中常用的工具之一. grep 指令在文件中查找能够匹配指定模式字符串的行.如果没有指定文件名,或者文件名为 - ,则从标准输入设备获取数据.默认会输出匹配行. grep will print lines matching a pattern. grep searches the named input FILEs for lines containing a match to the given PATTERN. If no…
1. sed sed 是一种流编辑器,它是文本处理中非常常用的工具,能够完美的配合正则表达式使用,功能非常强大. mkdir playground touch test.txt echo "Hello world!" >> test.txt cat>test.txt<<EOF > i love you > my honey > be easy > last row > EOF 例如: 删除文档的第一行 sed -i '1d'…