1 2018-06-03 09:45:42 <A4L> How to send bitcoin(s) from a private key to public address in python/php/linux bash like that: send.bitcoin(PRIVATE, PUBLIC, AMOUNT);
 2 2018-06-03 09:48:18 <jonasschnelli> A4L: why not use Bitcoin Core (as backend) and then do it with RPC (sendtoaddress command, etc.)?
 3 2018-06-03 09:49:52 <A4L> i have like 100 public addresses with some small amount.
 4 2018-06-03 09:50:33 <jonasschnelli> A4L: Use Bitcoin Core via RPC
 5 2018-06-03 09:50:56 <jonasschnelli> A4L: generate 100 addresses (call getnewaddress() 100 times)
 6 2018-06-03 09:51:08 <jonasschnelli> Send your desired amount to those addresses...
 7 2018-06-03 09:51:16 <jonasschnelli> But I fail to understand your usecase. :)
 8 2018-06-03 09:51:47 <A4L> oh i have 100 private addresed not public and i want to programaicly send bitcoins from them
 9 2018-06-03 09:55:27 <A4L> explain like im 5 yro
10 2018-06-03 10:49:29 <molz> A4L, how did you get these private keys to begin with?
11 2018-06-03 12:01:57 <spinza> you ask for advice but then ignore the given advice?
12 2018-06-03 17:31:23 <A4L> Ok well now i wanna know how to use php to send bitcoins from my privatekey to some publicaddress programaticly