Spaces:
Build error
Build error
Update aberconnect.sh
Browse files- aberconnect.sh +12 -16
aberconnect.sh
CHANGED
@@ -1,16 +1,12 @@
|
|
1 |
-
#!/
|
2 |
-
|
3 |
-
set timeout -1
|
4 |
-
|
5 |
-
set
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
#expect "*OTP:*"
|
15 |
-
#send -- $OTP\r"
|
16 |
-
expect eof
|
|
|
1 |
+
#!/bin/bash
|
2 |
+
/usr/bin/expect <<EOF
|
3 |
+
set timeout -1
|
4 |
+
set username [email protected]
|
5 |
+
set password cyx521301
|
6 |
+
spawn ./openconnect --protocol=gp gp-vpn.icts.unitn.it --user=$username
|
7 |
+
expect {
|
8 |
+
"Password:*" {
|
9 |
+
send -- "$password\r"
|
10 |
+
}
|
11 |
+
}
|
12 |
+
EOF
|
|
|
|
|
|
|
|