重定向描述符

文件描符      缩写                  描述

0                    STDIN          标准输入
1                    STDOUT      标准输出
2                    STDERR      标准错误

 

 

1、重定向错误和数据

1
2
3
4
[root@logicserver tmp]# ls -al data1 haha 2> qingyun.txt 1>pangfeng.txt
[root@logicserver tmp]# cat qingyun;cat pangfeng.txt 
cat: qingyun: 没有那个文件或目录
-rw-r--r--. 1 root root 269 9月  18 09:54 data1

 

2、在脚本重定向输出

 

2.1临时重定向

故意在脚本生成错误消息,可以将单独的一行输出重定向到STDERR,在文件描述符数字前加一个and符(&)

1
2
3
4
5
[root@logicserver tmp]# vim data6
#!/bin/bash
#
echo "This is an error" >&2
echo "This is a normal output"

运行脚本,看不出本质区别

1
2
3
 [root@logicserver tmp]# sh data6
This is an error
This is a normal output

默认情瓿上,Linux将STDERR定向到STDOUT,但在运行脚本时重定向了STDERR,脚本中所有定向到STDERRR的文本都会被重定向

1
2
3
4
[root@logicserver tmp]# sh data6 2> data7
This is a normal output
[root@logicserver tmp]# cat data7
This is an error

 

2.2永久重定向

如果脚本有大量数据需要重定定,那重定向每个echo语名会很烦琐。用exec命令告诉 shell脚本执行期间重定向某个特定文件描述符

1
2
3
4
5
6
7
 [root@logicserver tmp]# vim data7
#!/bin/bash
#
exec 1> testout
echo "This is a test of redirecting all output"
echo "from a scirpt to another file"
echo "without having to redirect every individual line"
1
2
3
4
5
6
[root@logicserver tmp]# sh data7
[root@logicserver tmp]# ll test
test     testout  test.sh  
[root@logicserver tmp]# cat testout 
This is a test of redirecting all output
from a scirpt to another file

exec命令训动一个新shell并将STDOUT文件描述符重定向到文件

1
2
3
4
5
6
7
8
9
[root@logicserver tmp]# vim data7
#!/bin/bash
#
exec 2> testerror
echo "this is a error"
exec 1> testout
echo "This is a test of redirecting all output"
echo "from a scirpt to another file"
echo "Wrong a time" >&2

 

3、 重定向输入

exec命令允许将STDINT重定向到Linux系统上文件
exec 0< testfile

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[root@logicserver tmp]# cat data1
the quick brown fox jumps over the lazy dog1
the quick brown fox jumps over the lazy dog2
the quick brown fox jumps over the lazy dog3
the quick brown fox jumps over the lazy dog4
the quick brown fox jumps over the lazy dog5
the quick brown fox jumps over the lazy dog6
[root@logicserver tmp]# vim data8
#!/bin/bash
#
exec 0< data1
read LINE
count=1
while [ $? -eq 0 ]
do
        echo "Line#$count:$LINE"
        count=$[ $count+1 ]
        read LINE
done
1
2
3
4
5
6
7
 [root@logicserver tmp]# sh data8
Line#1:the quick brown fox jumps over the lazy dog1
Line#2:the quick brown fox jumps over the lazy dog2
Line#3:the quick brown fox jumps over the lazy dog3
Line#4:the quick brown fox jumps over the lazy dog4
Line#5:the quick brown fox jumps over the lazy dog5
Line#6:the quick brown fox jumps over the lazy dog6

也可以这样写

1
2
3
4
5
6
7
8
9
10
 [root@logicserver tmp]# vim data8
#!/bin/bash
#
exec 0< data1
count=1
while read LINE
do
        echo "Line#$count:$LINE"
        count=$[ $count+1 ]
done

 










本文转自 zouqingyun 51CTO博客,原文链接:http://blog.51cto.com/zouqingyun/1697088,如需转载请自行联系原作者

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/393271.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

NodeJS学习笔记(一)——搭建开发框架Express,实现Web网站登录验证

目录 开发环境  1、建立工程  2、目录结构  3、Express配置文件  4、Ejs模板  5、安装常用库及页面分离  6、路由  7、session  8、页面访问控制及提示JS是脚本语言&#xff0c;脚本语言都需要一个解析器才能运行。对于写在HTML页面里 的JS&#xff0c;浏览器充…

LeetCode-208 Implement Trie (Prefix Tree)

题目描述 Implement a trie with insert, search, and startsWith methods. 题目大意 实现对一棵树的插入、搜索以及前序查找操作。 &#xff08;树的每个节点代表一个小写字母&#xff0c;从根节点到叶节点代表一个完整的单词&#xff09; 示例 E Trie trie new Trie();trie.…

react组件生命周期_React组件生命周期-挂钩/方法介绍

react组件生命周期React components have several lifecycle methods that you can override to run your code at a particular time in the process.React组件具有几种生命周期方法&#xff0c;您可以重写它们以在流程中的特定时间运行代码。 In this video, Nick Karnik de…

(马世龙)Linux下CACTI完全搭建技术文档二

续&#xff08;马世龙&#xff09;Linux下CACTI完全搭建技术文档一 6.完成cacti的安装1. 首先检查一下rra/下面&#xff0c;有没有数据2. snmpwalk -v 2c -c public ServerIP if 用来测试被控对象(serverIP)是否开启了SNMP服务3. snmpwalk -v 2c ServerIP -c public .1.3.6.1.4…

项目经理如何管理情绪?这三本书管理书籍你必须要看

本文主要是介绍三本管理的书籍&#xff0c;需要全部书籍的可以加Q群375508415去拿走。里面很多大神的PMP资料。 大家有没有觉得项目经理有时像个政委&#xff0c;做员工思想工作&#xff1b; 有时像个HR&#xff0c;操心员工的稳定和发展&#xff1b; 有时像个咨询顾问&#xf…

java 外部接口调用 设计模式_《Java设计模式》之接口模式

-----------模式是思想的体现&#xff0c;而非具体的实现。抽象的讲&#xff0c;类的接口是类允许其他类对象访问的方法与字段集。接口通常代表一种承诺&#xff0c;即方法需要实现接口方法名表示的操作&#xff0c;遵循代码注释和其他文档说明&#xff0c;类的实现就是方法体中…

BFS(广度优先搜索)

Catch That Cow Farmer John has been informed of the location of a fugitive cow and wants to catch her immediately. He starts at a point N (0 ≤ N ≤ 100,000) on a number line and the cow is at a point K (0 ≤ K ≤ 100,000) on the same number line. Farmer …

leetcode111. 二叉树的最小深度(队列)

给定一个二叉树&#xff0c;找出其最小深度。最小深度是从根节点到最近叶子节点的最短路径上的节点数量。说明: 叶子节点是指没有子节点的节点。示例:给定二叉树 [3,9,20,null,null,15,7],3/ \9 20/ \15 7 返回它的最小深度 2.代码 /*** Definition for a binary tree no…

企业网站6个常见的优化漏洞

导读&#xff1a;企业做营销网站目的&#xff0c;就是希望通过网络营销&#xff0c;挖掘目标客户。目标客户怎么来&#xff0c;那就需要通过网站优化&#xff0c;把网站关键词优化排名到首页&#xff0c;这样才能更多的机会被潜在客户点击。很多企业网站上线之前&#xff0c;没…

aspx 微型_最初的十亿分钟:正在向世界授课的微型非营利组织背后的数字

aspx 微型by Quincy Larson昆西拉尔森(Quincy Larson) 最初的十亿分钟&#xff1a;正在向世界授课的微型非营利组织背后的数字 (The First Billion Minutes: The Numbers Behind the Tiny Nonprofit That’s Teaching the World to Code) People have now spent more than 1 b…

[RN] React Native 自定义导航栏随滚动渐变

React Native 自定义导航栏随滚动渐变 实现效果预览&#xff1a; 代码实现&#xff1a; 1、定义导航栏 NavPage.js import React, {Component} from react; import {View, Text, Image, StyleSheet, TouchableOpacity, Platform, Dimensions} from react-native;/*** 自定义导航…

【CSS 技能提升】 :before和:after的使用

前几天的晚上较全面的去看了下css的一些文档和资料&#xff0c;大部分的样式运用都没什么大问题了&#xff0c;只是有些许较陌生&#xff0c;但是也知道他们的存在和实现的是什么样式。今天主要想在这篇学习笔记中写的也不多&#xff0c;主要是针对:before和:after写一些内容&a…

c语言模拟java面向对象_纯c语言实现面向对象分析与示例分享

#include #include //接口#ifndef Interface#define Interface struct#endif//类#ifndef Class#define Class struct#endif//抽象形状类Class Shape;typedef Class Shape shape;//抽象形状类的方法声明shape* Shape(int edges);int shape_getEdges(shape *);int shape_getArea(…

leetcode152. 乘积最大子数组

给你一个整数数组 nums &#xff0c;请你找出数组中乘积最大的连续子数组&#xff08;该子数组中至少包含一个数字&#xff09;&#xff0c;并返回该子数组所对应的乘积。 示例 1: 输入: [2,3,-2,4] 输出: 6 解释: 子数组 [2,3] 有最大乘积 6。 代码 class Solution {publi…

成功试验基于C#/.NET的Android开发

今天最开心事情莫过于摸索验证了一个事情&#xff0c;C#也能进行Android和IOS开发&#xff0c;白天安装了开发环境&#xff0c;晚上进行测试&#xff0c;直到此时此刻&#xff0c;已经成功的导出一款基于C#/.NET的安卓APK&#xff0c;并且能够成功的导入到安卓手机运行&#xf…

使用机器学习预测天气_如何使用机器学习根据文章标题预测喜欢和分享

使用机器学习预测天气by Flavio H. FreitasFlavio H.Freitas着 如何使用机器学习根据文章标题预测喜欢和分享 (How to predict likes and shares based on your article’s title using Machine Learning) Choosing a good title for an article is an important step in the …

深入理解了MySQL,你才能说熟悉数据库

先抛出几个问题 1.为什么不建议使用订单号作为主键?2.为什么要在需要排序的字段上加索引?3.for update 的记录不存在会导致锁住全表?4.redolog 和 binlog 有什么区别?5.MySQL 如何回滚一条 sql ?6.char(50) 和 varchar(50) 效果是一样的么?索引知识回顾 对于 MySQL 数据库…

ibatis mysql 自增_mybatis自增主键

简单介绍&#xff1a;在使用mybats插入数据是&#xff0c;有很多需要和id关联的其他数据&#xff0c;所以在插入一条信息时获取其主键信息是很常见的操作。一 mysql数据库的主键自增(int类型的主键)1 创建一个表&#xff0c;设置表的id(此id必须是int类型)&#xff0c;设置为au…

DataGridView控件用法二:常用属性

通常会设置的DataGridView的属性如下&#xff1a; AllowUserToAddRows - False指示是否向用户显示用于添加行的选项&#xff0c;列标题下面的一行空行将消失。一般让其消失。AllowUserToDeleteRows - False指示是否允许用户从DataGridView删除行。一般不允许。AllowUserToOrder…

leetcode面试题 16.21. 交换和(二分查找)

给定两个整数数组&#xff0c;请交换一对数值&#xff08;每个数组中取一个数值&#xff09;&#xff0c;使得两个数组所有元素的和相等。 返回一个数组&#xff0c;第一个元素是第一个数组中要交换的元素&#xff0c;第二个元素是第二个数组中要交换的元素。若有多个答案&…