Script Example for Unattended Mode on a Linux Server
If you run ButConnect from a script, it will listen on the client side and connect without any further interaction:
#!/bin/shwhile true
do
mono ButConnect.exe -x -i:client.key -r:5900 --user:<client_user> --link:<link> --code:<client_code>
sleep 300
done