Sophie

Sophie

distrib > Mageia > 5 > x86_64 > by-pkgid > a68a11d7b2fdd65fa640544faac65cb2 > files > 55

expect-examples-5.43.0-26.mga5.x86_64.rpm

#!../expect --
# Description: unbuffer stdout of a program
# Author: Don Libes, NIST

if {[string compare [lindex $argv 0] "-p"] == 0} {
    # pipeline
    set stty_init "-echo"
    eval spawn -noecho [lrange $argv 1 end]
    interact
} else {
    set stty_init "-opost"
    eval spawn -noecho $argv
    set timeout -1
    expect
}