expect 定时关闭 shell 阻塞语句
演示
yum -y install expect
[root@sky ~]# cat sleep_test.exp
set timeout 5
spawn tailf gg.sql
expect eof
[root@sky ~]# expect sleep_test.exp
不断学习
演示
yum -y install expect
[root@sky ~]# cat sleep_test.exp
set timeout 5
spawn tailf gg.sql
expect eof
[root@sky ~]# expect sleep_test.exp