linux三剑客与管道

管道: linux提供管道符,将两个命令隔开,管道符左边命令的输出就会作为管道符右边命令的输入。 可以拥有多个命令。 echo “hello 1234” | grep hello 在hello 1234里面挑选 hello。 正则表达式。 https://tool.oschina.net/regex# 找出所有的hi单词\bhi\b 加上\b之后的效果就是只会有hi会被匹配到了。 hi单词后面有l
相关文章
相关标签/搜索