mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-03 19:43:36 +00:00
Update cheatsheets
This commit is contained in:
26
tldr/bitcoind
Normal file
26
tldr/bitcoind
Normal file
@@ -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: <https://manned.org/bitcoind>.
|
||||
|
||||
- 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}}`
|
||||
34
tldr/qalc
Normal file
34
tldr/qalc
Normal file
@@ -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: <https://qalculate.github.io/manual/qalc.html>.
|
||||
|
||||
- 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}}`
|
||||
Reference in New Issue
Block a user