1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
This commit is contained in:
Antti Savolainen 2025-04-28 21:21:03 +03:00
parent 1e63860e1d
commit ece95f8088
10 changed files with 20 additions and 20 deletions

View file

@ -13,11 +13,11 @@
- Start a daemon, accepting connections from a specific network address or address range: - Start a daemon, accepting connections from a specific network address or address range:
`distccd --daemon --allow {{ip_address|network_prefix}}` `distccd --daemon {{[-a|--allow]}} {{ip_address|network_prefix}}`
- Start a daemon with a lowered priority that can run a maximum of 4 tasks at a time: - Start a daemon with a lowered priority that can run a maximum of 4 tasks at a time:
`distccd --daemon --jobs {{4}} --nice {{5}}` `distccd --daemon {{[-j|--jobs]}} {{4}} {{[-N|--nice]}} {{5}}`
- Start a daemon and register it via mDNS/DNS-SD (Zeroconf): - Start a daemon and register it via mDNS/DNS-SD (Zeroconf):

View file

@ -2,7 +2,7 @@
> Create a Git branch in a repository. > Create a Git branch in a repository.
> Part of `git-extras`. > Part of `git-extras`.
> More information: <https://github.com/tj/git-extras/blob/master/Commands.md#git-create-branch>. > More information: <https://manned.org/man/git-create-branch>.
- Create a local branch: - Create a local branch:
@ -10,8 +10,8 @@
- Create a branch locally and on origin: - Create a branch locally and on origin:
`git create-branch --remote {{branch_name}}` `git create-branch {{[-r|--remote]}} {{branch_name}}`
- Create a branch locally and on upstream (through forks): - Create a branch locally and on upstream (through forks):
`git create-branch --remote upstream {{branch_name}}` `git create-branch {{[-r|--remote]}} upstream {{branch_name}}`

View file

@ -10,7 +10,7 @@
- Check commits for a GPG signature and show details of each commit: - Check commits for a GPG signature and show details of each commit:
`git verify-commit {{commit_hash1 optional_commit_hash2 ...}} --verbose` `git verify-commit {{commit_hash1 optional_commit_hash2 ...}} {{[-v|--verbose]}}`
- Check commits for a GPG signature and print the raw details: - Check commits for a GPG signature and print the raw details:

View file

@ -1,11 +1,11 @@
# gnucash-cli # gnucash-cli
> A command-line version of GnuCash. > A command-line version of GnuCash.
> More information: <https://gnucash.org>. > More information: <https://gnucash.org/viewdoc.phtml?rev=5&lang=C&doc=help>.
- Get quotes for currencies and stocks specified in a file and print them: - Get quotes for currencies and stocks specified in a file and print them:
`gnucash-cli --quotes get {{path/to/file.gnucash}}` `gnucash-cli {{[-Q|--quotes]}} get {{path/to/file.gnucash}}`
- Generate a financial report of a specific type, specified by `--name`: - Generate a financial report of a specific type, specified by `--name`:

View file

@ -1,7 +1,7 @@
# gnucash # gnucash
> Personal and small-business financial-accounting software. > Personal and small-business financial-accounting software.
> More information: <https://gnucash.org>. > More information: <https://gnucash.org/viewdoc.phtml>.
- Launch GnuCash and load the previously opened file: - Launch GnuCash and load the previously opened file:

View file

@ -5,11 +5,11 @@
- Download the daily offer book into the current directory with the specified book format (defaults to `pdf`): - Download the daily offer book into the current directory with the specified book format (defaults to `pdf`):
`packtpub download --type {{pdf|ebup|mobi}}` `packtpub download {{[-t|--type]}} {{pdf|ebup|mobi}}`
- Download the daily offer book into the specified directory: - Download the daily offer book into the specified directory:
`packtpub download --dir {{path/to/directory}}` `packtpub download {{[-d|--dir]}} {{path/to/directory}}`
- Start an interactive login to packtpub.com: - Start an interactive login to packtpub.com:

View file

@ -1,23 +1,23 @@
# pdfjam # pdfjam
> Shell frontend for the LaTeX pdfpages package for mingling PDFs. > Shell frontend for the LaTeX pdfpages package for mingling PDFs.
> More information: <https://github.com/rrthomas/pdfjam>. > More information: <https://github.com/pdfjam/pdfjam/blob/master/doc/pdfjam-help.txt>.
- Merge two (or more) PDFs: - Merge two (or more) PDFs:
`pdfjam {{path/to/file1.pdf}} {{path/to/file2.pdf}} --outfile {{path/to/output_file.pdf}}` `pdfjam {{path/to/file1.pdf path/to/file2.pdf ...}} {{[-o|--outfile]}} {{path/to/output_file.pdf}}`
- Merge the first page of each file together: - Merge the first page of each file together:
`pdfjam {{files...}} 1 --outfile {{path/to/output_file.pdf}}` `pdfjam {{path/to/file1.pdf 1 path/to/file2.pdf 1 ...}} {{[-o|--outfile]}} {{path/to/output_file.pdf}}`
- Merge subranges from two PDFs: - Merge subranges from two PDFs:
`pdfjam {{path/to/file1.pdf 3-5,1}} {{path/to/file2.pdf 4-6}} --outfile {{path/to/output_file.pdf}}` `pdfjam {{path/to/file1.pdf 3-5,1}} {{path/to/file2.pdf 4-6}} {{[-o|--outfile]}} {{path/to/output_file.pdf}}`
- Sign an A4 page (adjust delta to height for other formats) with a scanned signature by overlaying them: - Sign an A4 page (adjust delta to height for other formats) with a scanned signature by overlaying them:
`pdfjam {{path/to/file.pdf}} {{path/to/signature}} --fitpaper true --outfile {{path/to/signed.pdf}} --nup "{{1x2}}" --delta "{{0 -842pt}}"` `pdfjam {{path/to/file.pdf}} {{path/to/signature}} --fitpaper true {{[-o|--outfile]}} {{path/to/signed.pdf}} --nup "{{1x2}}" --delta "{{0 -842pt}}"`
- Arrange the pages from the input file into a fancy 2x2 grid: - Arrange the pages from the input file into a fancy 2x2 grid:
@ -25,4 +25,4 @@
- Reverse the order of pages within each given file and concatenate them: - Reverse the order of pages within each given file and concatenate them:
`pdfjam {{files...}} {{last-1}} --suffix {{reversed}}` `pdfjam {{path/to/file1.pdf last-1 path/to/file2.pdf last-1 ...}} --suffix {{reversed}}`

View file

@ -1,7 +1,7 @@
# snyk # snyk
> Find vulnerabilities in your code and remediate risks. > Find vulnerabilities in your code and remediate risks.
> More information: <https://snyk.io>. > More information: <https://docs.snyk.io/snyk-cli/commands>.
- Log in to your Snyk account: - Log in to your Snyk account:

View file

@ -2,7 +2,7 @@
> Python-powered, cross-platform, Unix-gazing shell. > Python-powered, cross-platform, Unix-gazing shell.
> Write and mix sh/Python code in Xonsh (pronounced conch). > Write and mix sh/Python code in Xonsh (pronounced conch).
> More information: <https://xon.sh>. > More information: <https://xon.sh/contents.html>.
- Start an interactive shell session: - Start an interactive shell session:

View file

@ -2,7 +2,7 @@
> Bring your shell with all of your customizations through SSH sessions. > Bring your shell with all of your customizations through SSH sessions.
> Note: xxh does not install anything into system directories on the target machine; removing `~/.xxh` will clear all traces of xxh on the target machine. > Note: xxh does not install anything into system directories on the target machine; removing `~/.xxh` will clear all traces of xxh on the target machine.
> More information: <https://github.com/xxh/xxh>. > More information: <https://github.com/xxh/xxh#usage>.
- Connect to a host and run the current shell: - Connect to a host and run the current shell: