美文网首页
Linux 命令 & shell 脚本之03(重定向 & 管道)

Linux 命令 & shell 脚本之03(重定向 & 管道)

作者: 轻飘飘D | 来源:发表于2020-09-26 23:48 被阅读0次

1.输出重定向

#命令格式 command > outputfile

#将date命令的输出重定向文件中。如文件已经存在了,重定向操作会用新数据覆盖原有數據
[oracle@DB02 myshell]$ date > date.dat

[oracle@DB02 myshell]$ cat date.dat 
Mon Sep 14 14:39:01 CST 2020

[oracle@DB02 myshell]$ who > date.dat 

[oracle@DB02 myshell]$ cat date.dat 
root     tty1         2019-10-15 10:07
oracle   pts/0        2020-09-10 10:59 (10.3.20.85)
oracle   pts/1        2020-09-10 14:59 (10.3.20.85)

#用双大于号(>>)来追加数据
[oracle@DB02 myshell]$ date >> date.dat 

[oracle@DB02 myshell]$ cat date.dat 
root     tty1         2019-10-15 10:07
oracle   pts/0        2020-09-10 10:59 (10.3.20.85)
oracle   pts/1        2020-09-10 14:59 (10.3.20.85)
Mon Sep 14 14:43:08 CST 2020

2.输入重定向

#命令格式 command < inputfile

#这里有个和wc命令一起使用输入重定向的例子
[oracle@DB02 myshell]$ wc < date.dat 
  4  20 172
wc命令可以对对数据中的文本进行计数。默认情况下,它会输出3个值:
 文本的行数
 文本的词数
 文本的字节数

#内联输入重定向(无需使用文件进行重定向,只需在命令行中指定用于输入重定向的数据就可以)
[oracle@DB02 myshell]$ wc << EOF
test string 1
test string 2
test string 3
EOF
-----------------------------------------
3  9 42
-----------------------------------------

3.管道

#将一个命令的输出作为另一个命令的输入 
[oracle@DB02 myshell]$ cat date.dat | sort 
Mon Sep 14 14:43:08 CST 2020
oracle   pts/0        2020-09-10 10:59 (10.3.20.85)
oracle   pts/1        2020-09-10 14:59 (10.3.20.85)
root     tty1         2019-10-15 10:07

[oracle@DB02 myshell]$ cat date.dat | sort > date.sort

[oracle@DB02 myshell]$ cat date.sort 
Mon Sep 14 14:43:08 CST 2020
oracle   pts/0        2020-09-10 10:59 (10.3.20.85)
oracle   pts/1        2020-09-10 14:59 (10.3.20.85)
root     tty1         2019-10-15 10:07

相关文章

  • 管道命令

    参考linux shell 管道命令(pipe)使用及与shell重定向区别、管道命令 管道命令操作符是:”|”,...

  • Linux 命令 & shell 脚本之03(重定向 & 管道)

    1.输出重定向 2.输入重定向 3.管道

  • 第4次课-Shell脚本语言-第4讲

    内容一:Shell脚本语言-管道? 内容二:Shell脚本语言-重定向?

  • Shell语言学习(四)

    内容一:Shell脚本语言-管道 内容二:Shell脚本语言-重定向 重定向目的:就是操作文件输入和输出1、学习-...

  • Shell(二)

    什么是Shell Shell脚本 管道和重定向 Shell管道是Shell中最值得称赞的功能之一,它以非常简洁的形...

  • shell 语法

    shell 语法如何抒写一个shell脚本shell脚本运行shell中的特殊符号管道重定向shell中数学运算脚...

  • Linux的管道命令

    Linux的管道命令 管道命令(Pipe) 双向重定向 字符转换命令:tr,col,join,paste,expand

  • 1.13 将命令序列的输出读入变量

    《Linux Shell 脚本攻略(第 2 版)》读书笔记 用管道组合两个命令ls | cat -n > out....

  • shell脚本基础

    shell介绍 shell命令: 在linux终端能被解析的命令,就是shell命令。 shell脚本: 多个sh...

  • 17. Interview-Linux

    1 用过哪些Linux命令? 2 写过shell脚本吗?shell脚本基本格式? 3 Linux I/O读写方式 ...

网友评论

      本文标题:Linux 命令 & shell 脚本之03(重定向 & 管道)

      本文链接:https://www.haomeiwen.com/subject/pkdzektx.html