标签: linux bash terminal expect terminator
我写了一个剧本:
#! /bin/bash terminator -x sh -c "expect -c 'spawn su - ;expect Password:;send "your-password\n";interact';df -h;bash "
- >这将打开一个具有root登录的终结者终端,我需要在脚本中进行哪些更改,以便其他命令(例如.df -h)可以在root登录后在终结器的终端中执行。