blob: 3e5d0b2bbf59357ec7312b46697ec60f9df62fa4 (
plain)
1
2
3
4
5
6
7
8
|
#!/usr/bin/expect
spawn /opt/odl/distribution-karaf-0.2.3-Helium-SR3/bin/client
expect "root>"
send "feature:list | grep -i odl-restconf\r"
send "\r\r\r"
expect "root>"
send "logout\r"
|