Files
2019-09-23 05:33:09 -04:00

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