2

我在 mac 上运行仪器,我想将输出重定向到一个文件。

以下是我正在使用的命令:

instruments -t "$AUTOMATION_TEMPLATE" "${APP_UNDER_TEST}" -e UIASCRIPT "AppTests/Automation/iPhone/MemLeaksTest.js" >> ${INSTRUMENTS_LOG_FILE}

现在,当我跟踪 ${INSTRUMENTS_LOG_FILE} 时,我可以看到日志的最后一部分被延迟到模拟器上的应用程序关闭为止。即当仪器退出时,只有日志才被放入日志文件中。

我想强制重定向的缓冲区大小为 0,即立即登录文件。

我怎样才能做到这一点?

谢谢

4

1 回答 1

0

OSX 有unbufferstdbuf吗?


这是我的 Linux 系统上 /usr/bin/unbuffer 的内容。

#!/bin/sh
# -*- tcl -*-
# The next line is executed by /bin/sh, but not tcl \
exec tclsh "$0" ${1+"$@"}

package require Expect


# -*- tcl -*-
# Description: unbuffer stdout of a program
# Author: Don Libes, NIST

if {[string compare [lindex $argv 0] "-p"] == 0} {
    # pipeline
    set stty_init "-echo"
    eval [list spawn -noecho] [lrange $argv 1 end]
    close_on_eof -i $user_spawn_id 0
    interact {
    eof {
        # flush remaining output from child
        expect -timeout 1 -re .+
        return
    }
    }
} else {
    set stty_init "-opost"
    set timeout -1
    eval [list spawn -noecho] $argv
    expect
    exit [lindex [wait] 3]
}
于 2012-12-17T13:13:43.530 回答