在Ubuntu中,您可以使用expect命令与Shell脚本配合来自动化交互式任务。以下是一个简单的示例:
sudo apt-get install expect
#!/bin/bash
# Shell脚本中的交互式命令
read -p "Enter your name: " name
echo "Hello, $name!"
#!/usr/bin/expect
spawn ./test.sh
expect "Enter your name: "
send "Alice\r"
expect eof
在这个示例中,expect脚本会自动执行Shell脚本test.sh,并模拟用户输入"Alice"作为名字,然后等待Shell脚本执行完毕。
chmod +x test.sh
chmod +x test.exp
./test.exp
这样,您就可以使用expect命令与Shell脚本配合来完成自动化交互式任务。您可以根据实际需求修改expect脚本中的expect和send语句来模拟不同的用户输入。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: ubuntu中查看端口命令是什么