linux基础命令_4

cat > helei.txt << EOF
helei
haohao xuexi
tiantian xiangshagn
EOF

  • grep -v helei helei.txt
    • -v 排除(见下图)
    • grep 过滤
    • grep(grep "he" helei.txt)


      排除.png

      过滤.png
-   head -2 helei.txt
-   head  helei.txt 默认显示前10行

三剑客.png

你可能感兴趣的:(linux基础命令_4)