linux shell (6) - Output ,Input and Redirect 重定向

路由侠
• 阅读 3406

linux shell (6) - Output ,Input and Redirect 重定向

2015.10

视频教程 http://www.jikexueyuan.com/course/1622.html

欢迎提问!

linux shell (6) - Output ,Input and Redirect 重定向

重定向

linux shell (6) - Output ,Input and Redirect 重定向

> and >>

linux shell (6) - Output ,Input and Redirect 重定向

有区别吗?

会覆盖 而 >>追加内容。

演示 重定向输出到文件中

linux shell (6) - Output ,Input and Redirect 重定向

linux shell (6) - Output ,Input and Redirect 重定向

如果没有iotest 会自动创建。

linux shell (6) - Output ,Input and Redirect 重定向

linux shell (6) - Output ,Input and Redirect 重定向

输入重定向演示:cat

linux shell (6) - Output ,Input and Redirect 重定向

同时指定输入输出

linux shell (6) - Output ,Input and Redirect 重定向

内联输入重定向 <<

linux shell (6) - Output ,Input and Redirect 重定向

marker成对出现。

linux shell (6) - Output ,Input and Redirect 重定向

文件描述符与错误重定向

linux shell (6) - Output ,Input and Redirect 重定向

bash中提供了三个描述符。

linux shell (6) - Output ,Input and Redirect 重定向

demonstration

linux shell (6) - Output ,Input and Redirect 重定向

分离错误输出与正确输出

linux shell (6) - Output ,Input and Redirect 重定向

脚本中重定向 临时与永久重定向

linux shell (6) - Output ,Input and Redirect 重定向

linux shell (6) - Output ,Input and Redirect 重定向

linux shell (6) - Output ,Input and Redirect 重定向

管道 命令1输出重定向到命令2输入

格式

command1 | command2

常用案例

ps -ef | less  #使不方便查看的结果变得可以翻页

ps -ef | grep bash #结果传递给grep进行正则过滤

tee 一个输入两个输出

linux shell (6) - Output ,Input and Redirect 重定向

同时输出到屏幕和文件

点赞
收藏
评论区
推荐文章
海军 海军
4年前
全栈进阶:Nginx基本功能及其原理
<divclass"output_wrapper"id"output_wrapper_id"style"fontsize:16px;color:rgb(62,62,62);lineheight:1.6;wordspacing:0px;letterspacing:0px;fontfamily:'Helvetica
Stella981 Stella981
3年前
Angular组件交互
Angular2中的组件交互方式很多,可分为父子组件交互和非父子组件交互两种情况。在学习之前需要了解组件的@Input(https://my.oschina.net/InPuto)和@Output(https://my.oschina.net/output1314)的用法//子组件中内容@Input()绑定的属性名
Stella981 Stella981
3年前
Linux Shell DAY6
shell脚本介绍shell脚本结构和执行date命令用法shell脚本中的变量脚本中的逻辑判断shell脚本介绍shell是什么shell是一种脚本语言可以使用逻辑判断、循环等语法可以自定义函数
Stella981 Stella981
3年前
Linux查看内置命令和非内置命令帮助的几种方法(man、help、info)
!(https://oscimg.oschina.net/oscnet/53cb7c40ce2945df9de5490f1d07e660.jpg)内置命令就是shell内核自带的,因为shell当中自己要进行管理,那么就需要一些命令进行管理,不同的shell肯定有不同的shell命令,我们用type命令就可以看到其的类型,内置shell命令其
Stella981 Stella981
3年前
Remove Linked List Elements(leetcode203)
emoveallelementsfromalinkedlistofintegersthathavevalue _val_.Example:Input:1263456,_val_6Output:12345实现:publicst
Stella981 Stella981
3年前
Nginx在Windows平台的配置与使用
<divclass"output\_wrapper"id"output\_wrapper\_id"style"fontsize:16px;color:rgb(62,62,62);lineheight:1.6;wordspacing:0px;letterspacing:0px;fontfamily:'Helvet
Wesley13 Wesley13
3年前
JavaIO
<divclass"output\_wrapper"id"output\_wrapper\_id"style"fontsize:15px;color:rgb(62,62,62);lineheight:1.8;wordspacing:2px;letterspacing:2px;fontfamily:'Helvet
Stella981 Stella981
3年前
Linux shell编程及自动化运维实现 第1章 变量
1.shell前言一,什么是shell!Linuxshell编程及自动化运维实现第1章变量(https://s4.51cto.com/images/blog/202009/04/29d10164c845731fba8b649d4bd9478f.png?xossprocessimage/watermark,size_16,tex
Wesley13 Wesley13
3年前
525. Contiguous Array
Givenabinaryarray,findthemaximumlengthofacontiguoussubarraywithequalnumberof0and1.Example1:Input:0,1Output:2Explanation:0,1isthelo
Stella981 Stella981
3年前
Linux学习
今天修好了图片搞起来!(https://oscimg.oschina.net/oscnet/b0b917286862584be356bf632cc51f1d6a4.jpg)输出重定向 输入重定向<清空追加!(https://oscimg.oschina.net/oscnet/fb5a249c74
芝士年糕 芝士年糕
2年前
Linux中的重定向和管道符
租了台服务器,用来学习linux,有需要的可以后台私信我,很便宜的重定向(重定向)和(追加重定向)重定向就是把一个命令的输出保存到一个文件中,而不是直接输出到屏幕上。例如,ls会将当前目录下的文件名输出到屏幕上:使用重定向:ls/home/test/output.txt那么,就会把ls在屏幕上输出的内容写到/home/test/output.txt(