当前位置:网站首页>redirect action
redirect action
2022-08-09 20:15:00 【Sun Xiaoshen】
一、将输出重定向到文件或程序.
| 用法 | 说明 |
|---|---|
| > file | 重定向标准输出(stdout);以覆盖文件 |
| >> file | 重定向标准输出(stdout);To attached to the file |
| 2> file | 重定向标准输入(stderr);以覆盖文件 |
| 2> /dev/null | 将标准输入(stderr)错误消息重定向到/dev/null,Thus will be discarded him |
| &> file 或 > file 2>&1 | 重定向标准输出(stdout)和标准输入(stderr)To cover the same file |
| &>> file 或 >> file 2>&1 | 重定向标准输出(stdout)和标准输入(stderr)In additional to the same file |
注意:Redirect file sequence of operation is very important
> file 2>&1
将标准输出重定向到file,Then the standard error as a standard output to the same place(file).
2>&1 > file
In contrast to the above,The standard error is redirected to standard output the default location(终端窗口,因此没有任何更改),Only will then standard output redirectionfile.
示例
1、使用dateCommand to view the timestamp saved to/tmp/dateback中,供日后参考.
[[email protected] ~]$ date > /tmp/dateback
[[email protected] ~]$ cat /tmp/dateback
Wed 3 Aug 19:55:43 CST 2022
2、To a log file finally100Line to another file.
[[email protected] ~]$ sudo tail -n 100 /var/log/messages > /tmp/end-100
[[email protected] ~]$ wc -l /tmp/end-100
100 /tmp/end-100
3、将4A file link as1个文件.
[[email protected] log]$ sudo cat lastlog maillog tallylog > /tmp/old-log
4、Hide home directory of the file name and file name list to a file.
[[email protected] ~]$ ls -a > /tmp/my-file
5、Attach the output to the existing file.
[[email protected] ~]$ echo "new line of information" >> /tmp/many-lines
[[email protected] log]$ sudo diff lastlog tallylog >> /tmp/tracking-mode
6、When checking in on ordinary command output terminal,The error is redirected to the file.
[[email protected] ~]$ find /etc -name passwd 2> /tmp/errors
/etc/pam.d/passwd
/etc/passwd
[[email protected] ~]$ cat /tmp/errors
find: ‘/etc/lvm/archive’: Permission denied
find: ‘/etc/lvm/backup’: Permission denied
find: ‘/etc/lvm/cache’: Permission denied
find: ‘/etc/pki/rsyslog’: Permission denied
find: ‘/etc/pki/pesign’: Permission denied
find: ‘/etc/ssh/sshd_config.d’: Permission denied
find: ‘/etc/grub.d’: Permission denied
find: ‘/etc/sssd’: Permission denied
find: ‘/etc/polkit-1/rules.d’: Permission denied
find: ‘/etc/polkit-1/localauthority’: Permission denied
find: ‘/etc/cups/ssl’: Permission denied
find: ‘/etc/cni/net.d’: Permission denied
find: ‘/etc/nftables’: Permission denied
find: ‘/etc/audit’: Permission denied
find: ‘/etc/sudoers.d’: Permission denied
find: ‘/etc/libvirt’: Permission denied
find: ‘/etc/containers/networks’: Permission denied
find: ‘/etc/sos/cleaner’: Permission denied
find: ‘/etc/ipsec.d’: Permission denied
find: ‘/etc/firewalld’: Permission denied
7、Save the process output to/tmp/output文件中,To save the error message to/tmp/errors文件中.
[[email protected] ~]$ find /etc -name passwd > /tmp/output 2> /tmp/errors
[[email protected] ~]$ cat /tmp/output
/etc/pam.d/passwd
/etc/passwd
[[email protected] ~]$ cat /tmp/errors
find: ‘/etc/lvm/archive’: Permission denied
find: ‘/etc/lvm/backup’: Permission denied
find: ‘/etc/lvm/cache’: Permission denied
find: ‘/etc/pki/rsyslog’: Permission denied
find: ‘/etc/pki/pesign’: Permission denied
find: ‘/etc/ssh/sshd_config.d’: Permission denied
find: ‘/etc/grub.d’: Permission denied
find: ‘/etc/sssd’: Permission denied
find: ‘/etc/polkit-1/rules.d’: Permission denied
find: ‘/etc/polkit-1/localauthority’: Permission denied
find: ‘/etc/cups/ssl’: Permission denied
find: ‘/etc/cni/net.d’: Permission denied
find: ‘/etc/nftables’: Permission denied
find: ‘/etc/audit’: Permission denied
find: ‘/etc/sudoers.d’: Permission denied
find: ‘/etc/libvirt’: Permission denied
find: ‘/etc/containers/networks’: Permission denied
find: ‘/etc/sos/cleaner’: Permission denied
find: ‘/etc/ipsec.d’: Permission denied
find: ‘/etc/firewalld’: Permission denied
8、忽略并丢弃错误消息,But save the process output message.
[[email protected] ~]$ find /etc -name passwd > /tmp/export 2> /dev/null
[[email protected] ~]$ cat /tmp/export
/etc/pam.d/passwd
/etc/passwd
[[email protected] ~]$ cat /dev/null
9、The output and generate error messages stored together.
[[email protected] ~]$ find /etc -name passwd &> /tmp/save-both
[[email protected] ~]$ cat /tmp/save-both
find: ‘/etc/lvm/archive’: Permission denied
find: ‘/etc/lvm/backup’: Permission denied
find: ‘/etc/lvm/cache’: Permission denied
find: ‘/etc/pki/rsyslog’: Permission denied
find: ‘/etc/pki/pesign’: Permission denied
find: ‘/etc/ssh/sshd_config.d’: Permission denied
/etc/pam.d/passwd
find: ‘/etc/grub.d’: Permission denied
/etc/passwd
find: ‘/etc/sssd’: Permission denied
find: ‘/etc/polkit-1/rules.d’: Permission denied
find: ‘/etc/polkit-1/localauthority’: Permission denied
find: ‘/etc/cups/ssl’: Permission denied
find: ‘/etc/cni/net.d’: Permission denied
find: ‘/etc/nftables’: Permission denied
find: ‘/etc/audit’: Permission denied
find: ‘/etc/sudoers.d’: Permission denied
find: ‘/etc/libvirt’: Permission denied
find: ‘/etc/containers/networks’: Permission denied
find: ‘/etc/sos/cleaner’: Permission denied
find: ‘/etc/ipsec.d’: Permission denied
find: ‘/etc/firewalld’: Permission denied
10、The output and the generated error attached to an existing file.
[[email protected] ~]$ find /etc -name passwd >> /tmp/save-both 2>&1
[[email protected] ~]$ cat /tmp/save-both
find: ‘/etc/lvm/archive’: Permission denied
find: ‘/etc/lvm/backup’: Permission denied
find: ‘/etc/lvm/cache’: Permission denied
find: ‘/etc/pki/rsyslog’: Permission denied
find: ‘/etc/pki/pesign’: Permission denied
find: ‘/etc/ssh/sshd_config.d’: Permission denied
/etc/pam.d/passwd
find: ‘/etc/grub.d’: Permission denied
/etc/passwd
find: ‘/etc/sssd’: Permission denied
find: ‘/etc/polkit-1/rules.d’: Permission denied
find: ‘/etc/polkit-1/localauthority’: Permission denied
find: ‘/etc/cups/ssl’: Permission denied
find: ‘/etc/cni/net.d’: Permission denied
find: ‘/etc/nftables’: Permission denied
find: ‘/etc/audit’: Permission denied
find: ‘/etc/sudoers.d’: Permission denied
find: ‘/etc/libvirt’: Permission denied
find: ‘/etc/containers/networks’: Permission denied
find: ‘/etc/sos/cleaner’: Permission denied
find: ‘/etc/ipsec.d’: Permission denied
find: ‘/etc/firewalld’: Permission denied
find: ‘/etc/lvm/archive’: Permission denied
find: ‘/etc/lvm/backup’: Permission denied
find: ‘/etc/lvm/cache’: Permission denied
find: ‘/etc/pki/rsyslog’: Permission denied
find: ‘/etc/pki/pesign’: Permission denied
find: ‘/etc/ssh/sshd_config.d’: Permission denied
/etc/pam.d/passwd
find: ‘/etc/grub.d’: Permission denied
/etc/passwd
find: ‘/etc/sssd’: Permission denied
find: ‘/etc/polkit-1/rules.d’: Permission denied
find: ‘/etc/polkit-1/localauthority’: Permission denied
find: ‘/etc/cups/ssl’: Permission denied
find: ‘/etc/cni/net.d’: Permission denied
find: ‘/etc/nftables’: Permission denied
find: ‘/etc/audit’: Permission denied
find: ‘/etc/sudoers.d’: Permission denied
find: ‘/etc/libvirt’: Permission denied
find: ‘/etc/containers/networks’: Permission denied
find: ‘/etc/sos/cleaner’: Permission denied
find: ‘/etc/ipsec.d’: Permission denied
find: ‘/etc/firewalld’: Permission denied
二、构建管道
说明:Pipeline is a sequence of one or more orders,用竖线字符“|”分隔;Pipeline will be the first command of the standard output connected to the next command's standard input.想象一下:Data is through the pipe flow from one process to another process,Every command slightly in its flow through the pipe to do some changes.
重定向:Will send file to standard output or standard input from a file.
管道:Will be a process of standard output is sent to another process standard input.
示例
1、使用lsThe output of the command and uselessOn the terminal display output in the form of a once.
[[email protected] ~]$ ls -l /usr/bin | less
2、lsThe output of the command towc -l,Statistics from the userlsReceive the number of lines,And the bank number displayed in the end.
[[email protected] ~]$ ls | wc -l
9
3、Input in the pipe out of the current query results before10行,And the final result is redirected to a file.
[[email protected] ~]$ ls -t | head -n 10 > /tmp/ten-last
[[email protected] ~]$ cat /tmp/ten-last
rhel-8.6-x86_64-dvd.iso
Downloads
Desktop
Documents
Music
Pictures
Public
Templates
Videos
三、管道、重定向和tee命令
When redirection and pipe combination,shellWill first set the whole pipeline,And then redirect input/输出.If in the middle of the pipe using the output redirection,The output will be transferred to file,Rather than heading to the pipeline of the next command.teeOrder to overcome this limitation;在管道中,teeCopies of its standard input to its standard output,And also to standard output is redirected to the designated command parameter file.Imagine if the data flowing through a pipe of water,那么可将teeVisual into pipesT形接头,Responsible for the flow of output in both directions.
示例
1、将ls命令的输出重定向到文件,And the output to aless,So that on the terminal display in the form of one screen at a time.
[[email protected] ~]$ ls -l | tee /tmp/save-both | less
2、If at the end of pipe to usetee,You can save the final output of the command and output to the terminal at the same time.
[[email protected] ~]$ ls -t | head -n 10 | tee /tmp/ten-lest
rhel-8.6-x86_64-dvd.iso
Downloads
Desktop
Documents
Music
Pictures
Public
Templates
Videos
[[email protected] ~]$ cat /tmp/ten-lest
rhel-8.6-x86_64-dvd.iso
Downloads
Desktop
Documents
Music
Pictures
Public
Templates
Videos
边栏推荐
- 动态RDLC报表(一)
- Tan Zhongyi: Do you know who the "Queen of Open Source" is?
- 【解决】虚拟机VMware通过局域网连接机器人no route to host
- 以技术御风险,护航云原生 | 同创永益 X 博云举办产品联合发布会
- .NET 6 study notes (4) - Solve the Nullable warning in VS2022
- Metasploit——辅助模块(Auxiliary)
- 本机号码一键登录原理
- 动手学深度学习_风格迁移
- What are some good open source automation testing frameworks to recommend?
- Prometheus完整安装
猜你喜欢

Volatile:JVM 我警告你,我的人你别乱动

2022秋招面试宝典,啃完面试稳了

jmeter - record script

偷偷盘点一下各大互联网公司的实习薪资

How to play with container local storage through open-local? | Dragon Lizard Technology

Logic unauthorized and horizontal and vertical unauthorized payment tampering, verification code bypass, interface

Engaged in software testing for a year, only basic functional testing, how to further study?

测试开发是什么,为什么现在这么吃香?

动态RDLC报表(七)

Can't install the Vmware virtual machine on the Ark Kai server?
随机推荐
HarmonyOS - 基于ArkUI (JS) 实现图片旋转验证
How to choose a good SaaS knowledge base tool?
[Pycharm easy to use function]
Engaged in software testing for a year, only basic functional testing, how to further study?
最新!2022版新员工基础安全知识教育培训PPT,企业拿去直接用
.NET 6学习笔记(4)——解决VS2022中Nullable警告
为什么修补应用程序漏洞并不容易
C#介绍及基本数据类型
Guo Wei (Guo Daxia): Nine Yes or No about open source
The senior told me that the MySQL of the big factory is connected through SSH
【Pycharm好用功能】
01 -- 钉钉机器人
方舟:生存进化开服务器端口映射教程
The most complete architect knowledge map in history
有什么好的开源自动化测试框架可以推荐?
Apache Doris 社区 PMC 杨政国:开源项目如何在自身和社区的需求中取得平衡?
最强分布式锁工具:Redisson
jmeter-录制脚本
Li Yuanyuan: iMetaLab Suite metaproteomics data analysis and visualization (video + PPT)
OpenCV 轮廓 —— 轮廓匹配