linux – tee命令无法正常工作(带有read和echo)

前端之家收集整理的这篇文章主要介绍了linux – tee命令无法正常工作(带有read和echo)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
脚本和输出如下:

脚本:

#!/bin/bash
#tee_with_read.sh
function tee_test()
{
    echo "***This should be printed first but it is not***"
    read -r -p "Enter input : "
    echo "You entered : $REPLY"
}
tee_test | tee -a logfile

输出

$./tee_with_read.sh
Enter input : ***This should be printed first,but it is not***
"My Input"
You entered : "My Input"

我正在尝试将输出附加到logfile.
但是正如你在输出中所看到的那样,似乎第一次读取被剔除,然后是回声,这不是预期的.

我在Windows 10上使用Git Bash版本3.1.23.
由于此版本中没有命名管道,因此我无法使用命名管道进行日志记录.

解决方法

read -p将它的输出写入stderr,echo正在写入stdout. stdout通常是缓冲的,而stderr则没有,因此在stdout之前看到stderr事件的情况并不少见.

如果你喜欢做回声“字符串”>& 2你可以让你的回声也转到stderr,或者你可以在unbuffer命令或类似的工具中运行它,如果你有它们可用的话

原文链接:https://www.f2er.com/linux/393270.html

猜你在找的Linux相关文章