2

我有一个期望脚本来备份强化 VDOM 防火墙。

这很好用,除了基于日期输出的动态文件名。

这是脚本:

<!-- language: expect -->
#!/usr/bin/expect -f

##!/bin/bash
#DATE=$(date "+%Y.%m.%d")
#echo $DATE

set timeout 60
spawn ssh admin@vdom
expect "password: $"
set send_slow {1 0.05}
send -s "pass\r"
send_user "pass\r"
send -s "config global\n"
send -s "execute backup full-config tftp `date \"+%Y.%m.%d\"` ip.address\n"
send -s "exit\n"
interact

该脚本的结果如下: VDOM1 # execute backup full-config tftp date "+%Y.%m.%d"ip.address

有人可以帮忙吗?

4

1 回答 1

4

好的,我得到了关于 IRC 问题的答案(归功于 Venks):

`在 tcl 中并不特别。正确的做法是这样的:

send -s "execute backup full-config tftp [clock format [clock seconds] -format %Y.%m.%d] xxx.xxx.xxx.xxx\n"

希望这对将来的某人有所帮助。

于 2012-07-29T08:16:22.773 回答