Docker container for TapChat
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

tapchat.expect 189B

12345678910111213
  1. #!/usr/local/bin/expect --
  2. spawn tapchat start -f
  3. expect "port"
  4. send "8067\n"
  5. expect "username"
  6. send "admin\n"
  7. expect "password"
  8. send "admin\n"
  9. expect "SSL fingerprint"
  10. sleep 2
  11. close
  12. wait