how to write bch commands in bash file
本问题已经有最佳答案,请猛点这里访问。
我想写一个bash脚本来获取块计数。它出错了
/script.sh:line 4:=:找不到命令
下面是我的剧本
1 2 3 4 | #!/bin/bash # getblockcount $blockcount = bitcoin-cli getblockcount echo $blockcount |
请告诉我怎么了。
操作员周围不应有空间。因此,去掉
1 2 3 4 | #!/bin/bash # getblockcount blockcount=$(bitcoin-cli getblockcount) echo $blockcount |