• shell_57.Linux创建自己的重定向


    创建自己的重定向
    1.创建输出文件描述符
    可以用 exec 命令分配用于输出的文件描述符。和标准的文件描述符一样,一旦将替代性文件描述符指向文件,
    此重定向就会一直有效,直至重新分配。

    1. $ cat test13 
    2. #!/bin/bash 
    3. # using an alternative file descriptor 
    4. exec 3>test13out 
    5. echo "This should display on the monitor" 
    6. echo "and this should be stored in the file" >&3 
    7. echo "Then this should be back on the monitor" 
    8. $ ./test13 
    9. This should display on the monitor 
    10. Then this should be back on the monitor 
    11. $ cat test13out 
    12. and this should be stored in the file 
    13. $

    也可以不创建新文件,而是使用 exec 命令将数据追加到现有文件:

    exec 3>>test13out


    2.重定向文件描述符
    可以将另一个文件描述符分配给标准文件描述符,反之亦可。
    这意味着可以将 STDOUT 的原先位置重定向到另一个文件描述符,然后再利用该文件描述符恢复 STDOUT。

    1. $ cat test14 
    2. #!/bin/bash 
    3. # storing STDOUT, then coming back to it 
    4. exec 3>&1 
    5. exec 1>test14out 
    6. echo "This should store in the output file" 
    7. echo "along with this line." 
    8. exec 1>&3 
    9. echo "Now things should be back to normal" 
    10. $ ./test14 
    11. Now things should be back to normal 
    12. $ cat test14out 
    13. This should store in the output file 
    14. along with this line
    15. $


    第一个 exec 命令将文件描述符 3 重定向到了文件描述符 1(STDOUT)的当前位置,也就是显示器。这意味着任何送往文件描述符 3 的输出都会出现在屏幕上。
    第二个 exec 命令将 STDOUT 重定向到了文件,shell 现在会将发送给 STDOUT 的输出直接送往该文件。但是,文件描述符 3 仍然指向 STDOUT 原先的位置(显示器)。
    如果此时将输出数据发送给文件描述符 3,则它仍然会出现在显示器上,即使 STDOUT 已经被重定向了。
    第三个 exec 命令将 STDOUT 重定向到了文件描述符 3 的当前位置(现在仍然是显示器)。这意味着现在 STDOUT 又恢复如初了,即指向其原先的位置——显示器。


    3.创建输入文件描述符
    可以采用和重定向输出文件描述符同样的办法来重定向输入文件描述符。在重定向到文件之前,先将 STDIN 指向的位置保存到另一个文件描述符,
    然后在读取完文件之后将 STDIN 恢复到原先的位置:

    1. $ cat test15
    2. #!/bin/bash
    3. # redirecting input file descriptors
    4. exec 6<&0
    5. exec 0< testfile
    6. count=1
    7. while read line
    8. do
    9.     echo "Line #$count: $line"
    10.     count=$[ $count + 1 ]
    11. done
    12. exec 0<&6
    13. read -p "Are you done now? " answer
    14. case $answer in
    15.     Y|y) echo "Goodbye";;
    16.     N|n) echo "Sorry, this is the end.";;
    17. esac
    18. $ ./test15
    19. Line #1: This is the first line.
    20. Line #2: This is the second line.
    21. Line #3: This is the third line.
    22. Are you done now? y
    23. Goodbye
    24. $


    文件描述符 6 用于保存 STDIN 指向的位置。然后脚本将 STDIN 重定向到一个文件。
    read 命令的所有输入都来自重定向后的 STDIN(也就是输入文件)。
    在读完所有行之后,脚本会将 STDIN 重定向到文件描述符 6,恢复 STDIN 原先的位置。
    该脚本使用另一个 read 命令来测试 STDIN 是否恢复原位,这次 read 会等待键盘的输入。


    4.创建读/写文件描述符

    1. $ cat test16
    2. #!/bin/bash
    3. # testing input/output file descriptor
    4. exec 3<> testfile
    5. read line <&3
    6. echo "Read: $line"
    7. echo "This is a test line" >&3
    8. $ cat testfile
    9. This is the first line
    10. This is the second line
    11. This is the third line
    12. $ ./test16 
    13. Read: This is the first line
    14. $ cat testfile 
    15. This is the first line
    16. This is a test line 
    17. ine. 
    18. This is the third line
    19. $


    exec 命令将文件描述符 3 用于文件 testfile 的读和写。接下来,使用分配好的文件描述符,通过 read 命令读取文件中的第一行,然后将其显示在 STDOUT 中。
    最后,使用echo 语句将一行数据写入由同一个文件描述符打开的文件中。
    在运行脚本时,一开始还算正常。输出内容表明脚本读取了 testfile 文件的第一行。但如果在脚本运行完毕后查看 testfile 文件内容,则会发现写入文件中的数据覆盖了已有数据。
    当脚本向文件中写入数据时,会从文件指针指向的位置开始。read 命令读取了第一行数据,这使得文件指针指向了第二行数据的第一个字符。
    当 echo 语句将数据输出到文件时,会将数据写入文件指针的当前位置,覆盖该位置上的已有数据。


    5.关闭文件描述符
    如果创建了新的输入文件描述符或输出文件描述符,那么 shell 会在脚本退出时自动将其关闭。然而在一些情况下,需要在脚本结束前手动关闭文件描述符。
    要关闭文件描述符,只需将其重定向到特殊符号&-即可。在脚本中如下所示:

    exec 3>&


    该语句会关闭文件描述符 3,不再在脚本中使用。下面的例子演示了试图使用已关闭的文件描述符时的情况:

    1. $ cat badtest 
    2. #!/bin/bash 
    3. # testing closing file descriptors 
    4. exec 3> test17file 
    5. echo "This is a test line of data" >&3 
    6. exec 3>&
    7. echo "This won't work" >&3 
    8. $ ./badtest 
    9. ./badtest: 3: Bad file descriptor 


    一旦关闭了文件描述符,就不能在脚本中向其写入任何数据,否则 shell 会发出错误消息。


    6.如果随后你在脚本中打开了同一个输出文件,那么shell 就会用一个新文件来替换已有文件。
    这意味着如果你输出数据,它就会覆盖已有文件。来看下面这个例子:

    1. $ cat test17 
    2. #!/bin/bash 
    3. # testing closing file descriptors 
    4. exec 3> test17file 
    5. echo "This is a test line of data" >&3 
    6. exec 3>&
    7. cat test17file 
    8. exec 3> test17file 
    9. echo "This'll be bad" >&3 
    10. $ ./test17 
    11. This is a test line of data 
    12. $ cat test17file 
    13. This'll be bad' 
    14. $

  • 相关阅读:
    KWin、libdrm、DRM从上到下全过程 —— drmModeAddFBxxx(1)
    DQN算法概述及基于Pytorch的DQN迷宫实战代码
    在线问诊 Python、FastAPI、Neo4j — 生成 Cypher 语句
    iOS iGameGuardian修改器检测方案
    k8s-8_-rook介绍与使用
    Python 绘图大全之使用 Python Folium 制作生成热图的详细指南
    利用稳定扩散快速修复图像
    使用kubasz快速搭建Kubernetes集群
    layui(3)——内置模块弹出层
    智能交通车路协同系统的应用场景和发展趋势
  • 原文地址:https://blog.csdn.net/mmmmm168m/article/details/134099591