mirror of
https://github.com/rcore-os/rCore.git
synced 2024-11-22 16:16:16 +04:00
7 lines
77 B
Bash
Executable File
7 lines
77 B
Bash
Executable File
#!/bin/bash
|
|
for f in *.exp
|
|
do
|
|
echo run $f
|
|
timeout 30s expect $f
|
|
done
|