This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PIVX Core RPC client version v5.4.0 | |
| Usage: pivx-cli [options] <command> [params] Send command to PIVX Core | |
| or: pivx-cli [options] -named <command> [name=value]... Send command to PIVX Core (with named arguments) | |
| or: pivx-cli [options] help List commands | |
| or: pivx-cli [options] help <command> Get help for a command | |
| Options: | |
| -? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git_branch() { | |
| local branch=$(git rev-parse --abbrev-ref HEAD 2>/dev/null) | |
| if [[ -n "$branch" ]]; then | |
| echo "${git_color}${branch}${reset} " | |
| fi | |
| } | |
| git_color=$(tput setaf 2) # green | |
| dir_color=$(tput setaf 6) # cyan | |
| reset=$(tput sgr0) |
OlderNewer