ipc.exp

来自「samba-3.0.22.tar.gz 编译smb服务器的源码」· EXP 代码 · 共 45 行

EXP
45
字号
## Test operations on IPC$ share## Initialisationload_lib env-single.expload_lib smbclient.expset timeout 10# Spawn a smbclientif {![spawn_smbclient //$server/ipc\$ -U $user]} {    perror "error spawning smbclient"    return -1}## Start performing tests#global smb_promptdo_smbclient "lcd /tmp\r" "lcd /tmp"do_smbclient "!touch test.out\r" "touch test.out"foreach { op } { "dir\r" "put test.out\r" "get test.out\r" \	"get /etc/passwd\r" "mkdir foo\r" "print test.out\r" } {    set action "doing $op"    set output [do_smbclient $op $action]    if {![regexp "ERR" $output]} {	fail $action	puts $output    } else {	pass $action    }}# Clean upfile delete test.out

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?