Linux:在⽂件中查指定内容并输出到⽂件1 满⾜⼀个条件
例如:将⽂件 file1 中包含 name 的⾏输出到 file2.
grep 'name' file1 > file2
# 或者
cat file1 | grep 'name' > file2
2 满⾜两个条件任意⼀个
linux怎么读取文件例如:将⽂件 file1 中包含 name 或者 age 的⾏输出到 file2.
egrep 'name|age' file1 > file2
# 或者
grep -E 'name|age' file1 > file2
# 或者
cat file1 | grep -E 'name|age' > file2
3 同时满⾜两个条件
例如:将⽂件 file1 中包含 name 和 age 的⾏输出到 file2.
grep 'name' file1 | grep 'age' > file2
# 或者
cat file1 | grep 'name' | grep 'age' > file2
注意:符号“>”表⽰擦除⽂件原内容并写⼊;“>>”表⽰追加内容。
4 命令 grep 和 tee 搭配使⽤
grep 'name' file1 | tee -a file2
注意:-a 表⽰追加内容,不加此参数则表⽰:擦除原内容并写⼊,
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论