(src, dest string)
| 95 | } |
| 96 | |
| 97 | func (c CLI) MoveFile(src, dest string) (*string, error) { |
| 98 | return c.shellExec("mv", src, dest) |
| 99 | } |
| 100 | |
| 101 | func (c CLI) NodeID(nodeDir string) (*string, error) { |
| 102 | return c.shellExec("sifnoded", "tendermint", "show-node-id", "--home", nodeDir) |