unix-tee和退出状态

是否有替代“tee”捕获正在执行的命令的STDOUT / STDERR,并退出与处理的命令相同的退出状态.如下所示:
eet -a some.log -- mycommand --foo --bar

其中“eet”是“tee”的想象替代:)( – 表示附加,– 分离捕获的命令)应该不难劫持这样的命令,但也许它已经存在,我不知道它?

谢谢.

这是一个eet.每个Bash都可以让我的手从2.05b到4.0.
#!/bin/bash
tee_args=()
while [[ $# > 0 && $1 != -- ]]; do
    tee_args=("${tee_args[@]}" "$1")
    shift
done
shift
# now ${tee_args[*]} has the arguments before --,# and $* has the arguments after --

# redirect standard out through a pipe to tee
exec | tee "${tee_args[@]}"

# do the *real* exec of the desired program
exec "$@"

(pipefail和$PIPESTATUS是好的,但我记得他们被介绍在3.1或附近.)

相关文章

普通模式 >G 增加当前行到文档末尾处的缩紧层级 $ 移动到本行的末尾 . 相当于一个...
原文连接: https://spacevim.org/cn/layers/lang/elixir/ 模块简介 功能特性 启用模块 快捷键 语言专属...
原文连接: https://spacevim.org/cn/layers/lang/dart/ 模块简介 功能特性 依赖安装及启用模块 启用模...
 =   赋值操作符,可以用于算术和字符串赋值 +        加法计算     -        减法运算...
1.根据包名来查看指定的APP指定数据 adb shell "top | grep com.xxx.xxx" 由于这样打印出来的数...
ctrl+F 向下翻页 ctrl+B 向下翻页 u 取消最近一次操作 U 取消当前行的操作 ZZ 保存当前内容并退出 gg 跳...