What's wrong with my transaction command? Is there something wrong/missing that would not work?
eth.sendTransaction({from: '0xaaaaaaaaa...', to: '0xbbbbbbbbbbb...', value: 1})
You have to define the value:
eth.sendTransaction({from: 'your address', to: 'destination address', value: web3.toWei(amount of shift to send, "ether")})
It will output a tx address....