diff --git a/tldr/bitcoind b/tldr/bitcoind new file mode 100644 index 00000000..f6812629 --- /dev/null +++ b/tldr/bitcoind @@ -0,0 +1,26 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# bitcoind + +> Bitcoin Core daemon. +> Uses the configuration defined in `bitcoin.conf`. +> More information: . + +- Start the Bitcoin Core daemon (in the foreground): + +`bitcoind` + +- Start the Bitcoin Core daemon in the background (use `bitcoin-cli stop` to stop): + +`bitcoind -daemon` + +- Start the Bitcoin Core daemon on a specific network: + +`bitcoind -chain={{main|test|signet|regtest}}` + +- Start the Bitcoin Core daemon using specific config file and data directory: + +`bitcoind -conf={{path/to/bitcoin.conf}} -datadir={{path/to/directory}}` diff --git a/tldr/qalc b/tldr/qalc new file mode 100644 index 00000000..3437113f --- /dev/null +++ b/tldr/qalc @@ -0,0 +1,34 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# qalc + +> Powerful and easy to use command-line calculator. +> See also: `bc`. +> More information: . + +- Launch in [i]nteractive mode: + +`qalc {{--interactive}}` + +- Launch in [t]erse mode (print the results only): + +`qalc --terse` + +- Update currency [e]xchange rates: + +`qalc --exrates` + +- Perform calculations non-interactively: + +`qalc {{66+99|2^4|6 feet to cm|1 bitcoin to USD|20 kmph to mph|...}}` + +- List all supported functions/prefixes/units/variables: + +`qalc --{{list-functions|list-prefixes|list-units|list-variables}}` + +- Execute commands from a [f]ile: + +`qalc --file {{path/to/file}}`