I have these commands :
address=`tail -1 address.txt`
address="\"0x$address\" : {
\"balance\": \"1000000000000000000000000000\"}"
I want to execute this
sed -i "/{/a $address" genesis.json
but it crashs with this error
sed: -e expression n°1, caractère 61: commande inconnue: `"'
When i execute the same command whith $c avec $c=abs it works .
Do anyone have an idea about the problem?