pipelines and redirection

1.重定向
   find /etc -name passwd > output.txt 2>&1
   find /etc -name passwd > output.txt 2> error.txt
2.grep 常用参数
  +表示一个或者多个字母,如a +
  {n}表示连续重复N次
 -C3 上下文的3行,-A3,-B3 上文的3行,下文的3行
 -r 查询目录中的所有文件。
 {n,m}重复n-m次
   {,m] {n,}最少和最多
   \<word\> 单词匹配
  -v 排除查找
 ^a 以a 开头
a$ 以a结尾

你可能感兴趣的:(and,redirection,pipelines)