mirror of
https://github.com/kennethreitz/bake.git
synced 2026-06-05 14:50:19 +00:00
9 lines
205 B
Bash
9 lines
205 B
Bash
timeout() {
|
|
time=$1
|
|
command="/bin/sh -c \"$2\""
|
|
|
|
expect -c "set echo \"-noecho\"; set timeout $time; spawn -noecho $command; expect timeout { exit 0 } eof { exit 1 }"
|
|
|
|
}
|
|
export timeout
|