#!/bin/sh
# A "stub"-bitcoind, that will ssh-execute the real
# bitcoind on a remote machine.
# if you need this, then rename it to "bitcoind"
# and place it into a directory within $PATH
# You need to have password-LESS ssh-access to $rmthost
rmthost=your_bitcoind_running_host.dyndns...
rmtcmd=bitcoind  # or maybe: bin/bitcoind
args=""; for i; do args="$args '${i}'"; done
ssh "$rmthost" "$rmtcmd" "$args"
