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/sh
while true
do
mono ButConnect.exe -x -i:client.key -r:5900 --user:<client_user> --link:<link> --code:<client_code>
sleep 300
done