mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-25 09:45:25 -07:00
14 lines
324 B
Text
Executable file
14 lines
324 B
Text
Executable file
#!/usr/bin/env expect
|
|
|
|
# start tmux
|
|
spawn tmux -S/tmp/foo
|
|
|
|
# delay with sleep to compensate for tmux starting time
|
|
sleep 2
|
|
|
|
# run restore script directly
|
|
send "~/.tmux/plugins/tmux-resurrect/scripts/restore.sh\r"
|
|
|
|
# long wait until tmux restore is complete
|
|
# (things get messed up if expect client isn't attached)
|
|
sleep 100
|