• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

Bash的读/写文件的描述 - 寻求启动文件

用户头像
it1352
帮助1

问题说明

我试图用读/写文件描述符在bash,这样我可以删除该文件描述提到这个文件后来,因为这样的:

I tried to use the read/write file descriptor in bash so that I could delete the file that the file descriptor referred to afterward, as such:

F=$(mktemp)
exec 3<> "$F"
rm -f "$F"

echo "Hello world" >&3
cat <&3

命令不会有任何输出。我能达到我想要的,如果我使用单独的文件描述符进行读取和写入:

but the cat command gives no output. I can achieve what I want if I use separate file descriptors for reading and writing:

F=$(mktemp)
exec 3> "$F"
exec 4< "$F"
rm -f "$F"

echo "Hello world" >&3
cat <&4

这版画世界,你好

我怀疑的bash当你从写转换到读它,而下面的bash和python code组合证实了这一点并不会自动寻求文件描述符的启动:

I suspected that bash doesn't automatically seek to the start of the file descriptor when you switch from writing to reading it, and the following combination of bash and python code confirms this:

fdrw.sh

exec 3<> tmp
rm tmp

echo "Hello world" >&3
exec python fdrw.py

fdrw.py

fdrw.py

import os  

f = os.fdopen(3)
print f.tell()
print f.read()

这给:

$ bash fdrw.sh
12

$ # This is the prompt reappearing

有没有一种方法可以达到我只想使用bash是什么?

Is there a way to achieve what I want just using bash?

正确答案

#1

没有。 bash中没有求,其重定向的任何概念。它读/写(大部分)从开始在一个长流结束。

No. bash does not have any concept of "seeking" with its redirection. It reads/writes (mostly) from beginning to end in one long stream.

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcfijig
系列文章
更多 icon
同类精品
更多 icon
继续加载