I know that I can use the GUI to do this and I"m glad to do so...however how would I do this using a bash script? This is on a Mac but I would just change it for any OS in question.
#!/bin/sh
PAYOUTS=cat ~/Desktop/weeklySummary.csv
WP= /Users/${USER}/.electrum/wallets
PASS= "my_wallet_password"
# echo $PAYOUTS
cd /
./Applications/Electrum.app/Contents/MacOS/Electrum paytomany && $PAYOUTS -w $WP -W PASS
# this is not ready yet! I have to figure out
# whether or not change address, a fee, and a
# from address are requried to use this
I get thrown some errors for a few missing details. Am I required to have my wallet password, from address, and change address (I presume the answer is yes) but furthermore, what are the -h, -v, -P parameters mentioned here?
