1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

common*: refresh old pages part 4 (#16265)

This commit is contained in:
Managor 2025-04-27 10:59:15 +03:00 committed by GitHub
parent c17c5a3c3e
commit 19e80b2b40
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
33 changed files with 98 additions and 98 deletions

View file

@ -1,7 +1,7 @@
# cloc # cloc
> Count, and compute differences of, lines of source code and comments. > Count, and compute differences of, lines of source code and comments.
> More information: <https://github.com/AlDanial/cloc>. > More information: <https://github.com/AlDanial/cloc#basic-use->.
- Count all the lines of code in a directory: - Count all the lines of code in a directory:

View file

@ -9,7 +9,7 @@
- Send a file or directory with a specific passphrase: - Send a file or directory with a specific passphrase:
`croc send --code {{passphrase}} {{path/to/file_or_directory}}` `croc send {{[-c|--code]}} {{passphrase}} {{path/to/file_or_directory}}`
- Receive a file or directory on receiving machine: - Receive a file or directory on receiving machine:

View file

@ -1,7 +1,7 @@
# delta # delta
> A viewer for Git and diff output. > A viewer for Git and diff output.
> More information: <https://github.com/dandavison/delta>. > More information: <https://dandavison.github.io/delta/full---help-output.html>.
- Compare files or directories: - Compare files or directories:
@ -9,11 +9,11 @@
- Compare files or directories, showing the line numbers: - Compare files or directories, showing the line numbers:
`delta --line-numbers {{path/to/old_file_or_directory}} {{path/to/new_file_or_directory}}` `delta {{[-n|--line-numbers]}} {{path/to/old_file_or_directory}} {{path/to/new_file_or_directory}}`
- Compare files or directories, showing the differences side by side: - Compare files or directories, showing the differences side by side:
`delta --side-by-side {{path/to/old_file_or_directory}} {{path/to/new_file_or_directory}}` `delta {{[-s|--side-by-side]}} {{path/to/old_file_or_directory}} {{path/to/new_file_or_directory}}`
- Compare files or directories, ignoring any Git configuration settings: - Compare files or directories, ignoring any Git configuration settings:

View file

@ -9,7 +9,7 @@
- Measure the current upload speed in addition to download speed: - Measure the current upload speed in addition to download speed:
`fast --upload` `fast {{[-u|--upload]}}`
- Display results on a single line to reduce spacing: - Display results on a single line to reduce spacing:

View file

@ -5,16 +5,16 @@
- Restore any files deleted since the last commit: - Restore any files deleted since the last commit:
`git checkout-index --all` `git checkout-index {{[-a|--all]}}`
- Restore any files deleted or changed since the last commit: - Restore any files deleted or changed since the last commit:
`git checkout-index --all --force` `git checkout-index {{[-a|--all]}} {{[-f|--force]}}`
- Restore any files changed since the last commit, ignoring any files that were deleted: - Restore any files changed since the last commit, ignoring any files that were deleted:
`git checkout-index --all --force --no-create` `git checkout-index {{[-a|--all]}} {{[-f|--force]}} {{[-n|--no-create]}}`
- Export a copy of the entire tree at the last commit to the specified directory (the trailing slash is important): - Export a copy of the entire tree at the last commit to the specified directory (the trailing slash is important):
`git checkout-index --all --force --prefix={{path/to/export_directory/}}` `git checkout-index {{[-a|--all]}} {{[-f|--force]}} --prefix {{path/to/export_directory/}}`

View file

@ -9,7 +9,7 @@
- Write a commit-graph file containing all reachable commits: - Write a commit-graph file containing all reachable commits:
`git show-ref --hash | git commit-graph write --stdin-commits` `git show-ref {{[-s|--hash]}} | git commit-graph write --stdin-commits`
- Write a commit-graph file containing all commits in the current commit-graph file along with those reachable from `HEAD`: - Write a commit-graph file containing all commits in the current commit-graph file along with those reachable from `HEAD`:

View file

@ -18,4 +18,4 @@
- Use a specific tool (opendiff) to show changes since a given commit: - Use a specific tool (opendiff) to show changes since a given commit:
`git difftool --tool={{opendiff}} {{commit}}` `git difftool {{[-t|--tool]}} {{opendiff}} {{commit}}`

View file

@ -9,16 +9,16 @@
- Display help about a specific Git subcommand in a web browser: - Display help about a specific Git subcommand in a web browser:
`git help --web {{subcommand}}` `git help {{[-w|--web]}} {{subcommand}}`
- Display a list of all available Git subcommands: - Display a list of all available Git subcommands:
`git help --all` `git help {{[-a|--all]}}`
- List the available guides: - List the available guides:
`git help --guide` `git help {{[-g|--guide]}}`
- List all possible configuration variables: - List all possible configuration variables:
`git help --config` `git help {{[-c|--config]}}`

View file

@ -1,28 +1,28 @@
# gobuster # gobuster
> Brute-forces hidden paths on web servers and more. > Brute-forces hidden paths on web servers and more.
> More information: <https://github.com/OJ/gobuster>. > More information: <https://github.com/OJ/gobuster#modes>.
- Discover directories and files that match in the wordlist: - Discover directories and files that match in the wordlist:
`gobuster dir --url {{https://example.com/}} --wordlist {{path/to/file}}` `gobuster dir {{[-u|--url]}} {{https://example.com/}} {{[-w|--wordlist]}} {{path/to/file}}`
- Discover subdomains: - Discover subdomains:
`gobuster dns --domain {{example.com}} --wordlist {{path/to/file}}` `gobuster dns {{[-d|--domain]}} {{example.com}} {{[-w|--wordlist]}} {{path/to/file}}`
- Discover Amazon S3 buckets: - Discover Amazon S3 buckets:
`gobuster s3 --wordlist {{path/to/file}}` `gobuster s3 {{[-w|--wordlist]}} {{path/to/file}}`
- Discover other virtual hosts on the server: - Discover other virtual hosts on the server:
`gobuster vhost --url {{https://example.com/}} --wordlist {{path/to/file}}` `gobuster vhost {{[-u|--url]}} {{https://example.com/}} {{[-w|--wordlist]}} {{path/to/file}}`
- Fuzz the value of a parameter: - Fuzz the value of a parameter:
`gobuster fuzz --url {{https://example.com/?parameter=FUZZ}} --wordlist {{path/to/file}}` `gobuster fuzz {{[-u|--url]}} {{https://example.com/?parameter=FUZZ}} {{[-w|--wordlist]}} {{path/to/file}}`
- Fuzz the name of a parameter: - Fuzz the name of a parameter:
`gobuster fuzz --url {{https://example.com/?FUZZ=value}} --wordlist {{path/to/file}}` `gobuster fuzz {{[-u|--url]}} {{https://example.com/?FUZZ=value}} {{[-w|--wordlist]}} {{path/to/file}}`

View file

@ -9,16 +9,16 @@
- Clone a repository to the head of a specific branch, ignoring later commits: - Clone a repository to the head of a specific branch, ignoring later commits:
`hg clone --branch {{branch}} {{remote_repository_source}}` `hg clone {{[-b|--branch]}} {{branch}} {{remote_repository_source}}`
- Clone a repository with only the `.hg` directory, without checking out files: - Clone a repository with only the `.hg` directory, without checking out files:
`hg clone --noupdate {{remote_repository_source}}` `hg clone {{[-U|--noupdate]}} {{remote_repository_source}}`
- Clone a repository to a specific revision, tag or branch, keeping the entire history: - Clone a repository to a specific revision, tag or branch, keeping the entire history:
`hg clone --updaterev {{revision}} {{remote_repository_source}}` `hg clone {{[-u|--updaterev]}} {{revision}} {{remote_repository_source}}`
- Clone a repository up to a specific revision without any newer history: - Clone a repository up to a specific revision without any newer history:
`hg clone --rev {{revision}} {{remote_repository_source}}` `hg clone {{[-r|--rev]}} {{revision}} {{remote_repository_source}}`

View file

@ -2,7 +2,7 @@
> A super-powered `laravel new` for Laravel and Valet. > A super-powered `laravel new` for Laravel and Valet.
> See also `lambo new` for additional command flags. > See also `lambo new` for additional command flags.
> More information: <https://github.com/tighten/lambo>. > More information: <https://github.com/tighten/lambo#usage>.
- Create a new Laravel application: - Create a new Laravel application:
@ -14,7 +14,7 @@
- Open the configuration in a specific editor: - Open the configuration in a specific editor:
`lambo edit-config --editor="{{path/to/editor}}"` `lambo edit-config {{[-e|--editor]}} "{{path/to/editor}}"`
- Open the configuration file that is run after new applications have been scaffolded: - Open the configuration file that is run after new applications have been scaffolded:

View file

@ -1,7 +1,7 @@
# mutagen # mutagen
> Real-time file synchronization and network forwarding tool. > Real-time file synchronization and network forwarding tool.
> More information: <https://mutagen.io>. > More information: <https://mutagen.io/documentation/introduction/>.
- Start a synchronization session between a local directory and a remote host: - Start a synchronization session between a local directory and a remote host:

View file

@ -10,15 +10,15 @@
- Bundle and minify a Node.js application: - Bundle and minify a Node.js application:
`ncc build --minify {{path/to/file.js}}` `ncc build {{[-m|--minify]}} {{path/to/file.js}}`
- Bundle and minify a Node.js application and generate source maps: - Bundle and minify a Node.js application and generate source maps:
`ncc build --source-map {{path/to/file.js}}` `ncc build {{[-s|--source-map]}} {{path/to/file.js}}`
- Automatically recompile on changes to source files: - Automatically recompile on changes to source files:
`ncc build --watch {{path/to/file.js}}` `ncc build {{[-w|--watch]}} {{path/to/file.js}}`
- Bundle a Node.js application into a temporary directory and run it for testing: - Bundle a Node.js application into a temporary directory and run it for testing:

View file

@ -1,7 +1,7 @@
# next # next
> React framework that uses server-side rendering for building optimized web applications. > React framework that uses server-side rendering for building optimized web applications.
> More information: <https://nextjs.org/docs>. > More information: <https://nextjs.org/docs/app/api-reference/cli/next>.
- Start the current application in development mode: - Start the current application in development mode:
@ -9,7 +9,7 @@
- Start the current application and listen on a specific port: - Start the current application and listen on a specific port:
`next dev --port {{port}}` `next dev {{[-p|--port]}} {{port}}`
- Build the current application optimized for production: - Build the current application optimized for production:
@ -21,7 +21,7 @@
- Start the compiled application and listen on a specific port: - Start the compiled application and listen on a specific port:
`next start --port {{port}}` `next start {{[-p|--port]}} {{port}}`
- Export the current application to static HTML pages: - Export the current application to static HTML pages:
@ -33,4 +33,4 @@
- Display help for a subcommand: - Display help for a subcommand:
`next {{build|dev|export|start|telemetry}} --help` `next {{build|dev|export|start|telemetry}} {{[-h|--help]}}`

View file

@ -1,7 +1,7 @@
# php-coveralls # php-coveralls
> A PHP client for Coveralls. > A PHP client for Coveralls.
> More information: <https://php-coveralls.github.io/php-coveralls>. > More information: <https://php-coveralls.github.io/php-coveralls/#cli-options>.
- Send coverage information to Coveralls: - Send coverage information to Coveralls:
@ -9,15 +9,15 @@
- Send coverage information to Coveralls for a specific directory: - Send coverage information to Coveralls for a specific directory:
`php-coveralls --root_dir {{path/to/directory}}` `php-coveralls {{[-r|--root_dir]}} {{path/to/directory}}`
- Send coverage information to Coveralls with a specific config: - Send coverage information to Coveralls with a specific config:
`php-coveralls --config {{path/to/.coveralls.yml}}` `php-coveralls {{[-c|--config]}} {{path/to/.coveralls.yml}}`
- Send coverage information to Coveralls with verbose output: - Send coverage information to Coveralls with verbose output:
`php-coveralls --verbose` `php-coveralls {{[-v|--verbose]}}`
- Send coverage information to Coveralls excluding source files with no executable statements: - Send coverage information to Coveralls excluding source files with no executable statements:
@ -25,12 +25,12 @@
- Send coverage information to Coveralls with a specific environment name: - Send coverage information to Coveralls with a specific environment name:
`php-coveralls --env {{test|dev|prod}}` `php-coveralls {{[-e|--env]}} {{test|dev|prod}}`
- Specify multiple Coverage Clover XML files to upload: - Specify multiple Coverage Clover XML files to upload:
`php-coveralls --coverage_clover {{path/to/first_clover.xml}} --coverage_clover {{path/to/second_clover.xml}}` `php-coveralls {{[-x|--coverage_clover]}} {{path/to/first_clover.xml}} --coverage_clover {{path/to/second_clover.xml}}`
- Output the JSON that will be sent to Coveralls to a specific file: - Output the JSON that will be sent to Coveralls to a specific file:
`php-coveralls --json_path {{path/to/coveralls-upload.json}}` `php-coveralls {{[-o|--json_path]}} {{path/to/coveralls-upload.json}}`

View file

@ -1,7 +1,7 @@
# phpbu # phpbu
> A backup utility framework for PHP. > A backup utility framework for PHP.
> More information: <https://phpbu.de>. > More information: <https://phpbu.de/manual/current/en/phpbu-manual.html#cli>.
- Run backups using the default `phpbu.xml` configuration file: - Run backups using the default `phpbu.xml` configuration file:

View file

@ -13,12 +13,12 @@
- Generate documentation using a specific configuration file: - Generate documentation using a specific configuration file:
`phpdox --file {{path/to/phpdox.xml}}` `phpdox {{[-f|--file]}} {{path/to/phpdox.xml}}`
- Only run the metadata collection process: - Only run the metadata collection process:
`phpdox --collector` `phpdox {{[-c|--collector]}}`
- Only run the documentation generator process: - Only run the documentation generator process:
`phpdox --generator` `phpdox {{[-g|--generator]}}`

View file

@ -5,7 +5,7 @@
- Register a new PlatformIO account: - Register a new PlatformIO account:
`pio account register --username {{username}} --email {{email}} --password {{password}} --firstname {{firstname}} --lastname {{lastname}}` `pio account register {{[-u|--username]}} {{username}} {{[-e|--email]}} {{email}} {{[-p|--password]}} {{password}} --firstname {{firstname}} --lastname {{lastname}}`
- Permanently delete your PlatformIO account and related data: - Permanently delete your PlatformIO account and related data:
@ -13,7 +13,7 @@
- Log in to your PlatformIO account: - Log in to your PlatformIO account:
`pio account login --username {{username}} --password {{password}}` `pio account login {{[-u|--username]}} {{username}} {{[-p|--password]}} {{password}}`
- Log out of your PlatformIO account: - Log out of your PlatformIO account:
@ -21,7 +21,7 @@
- Update your PlatformIO profile: - Update your PlatformIO profile:
`pio account update --username {{username}} --email {{email}} --firstname {{firstname}} --lastname {{lastname}} --current-password {{password}}` `pio account update {{[-u|--username]}} {{username}} {{[-e|--email]}} {{email}} --firstname {{firstname}} --lastname {{lastname}} --current-password {{password}}`
- Show detailed information about your PlatformIO account: - Show detailed information about your PlatformIO account:
@ -29,4 +29,4 @@
- Reset your password using your username or email: - Reset your password using your username or email:
`pio account forgot --username {{username_or_email}}` `pio account forgot {{[-u|--username]}} {{username_or_email}}`

View file

@ -9,11 +9,11 @@
- Perform a basic analysis check on a specific project: - Perform a basic analysis check on a specific project:
`pio check --project-dir {{project_dir}}` `pio check {{[-d|--project-dir]}} {{project_dir}}`
- Perform an analysis check for a specific environment: - Perform an analysis check for a specific environment:
`pio check --environment {{environment}}` `pio check {{[-e|--environment]}} {{environment}}`
- Perform an analysis check and only report a specified defect severity type: - Perform an analysis check and only report a specified defect severity type:
@ -21,4 +21,4 @@
- Perform an analysis check and show detailed information when processing environments: - Perform an analysis check and show detailed information when processing environments:
`pio check --verbose` `pio check {{[-v|--verbose]}}`

View file

@ -10,11 +10,11 @@
- Build a PlatformIO project and specify specific libraries: - Build a PlatformIO project and specify specific libraries:
`pio ci --lib {{path/to/library_directory}} {{path/to/project}}` `pio ci {{[-l|--lib]}} {{path/to/library_directory}} {{path/to/project}}`
- Build a PlatformIO project and specify a specific board (`pio boards` lists all of them): - Build a PlatformIO project and specify a specific board (`pio boards` lists all of them):
`pio ci --board {{board}} {{path/to/project}}` `pio ci {{[-b|--board]}} {{board}} {{path/to/project}}`
- Build a PlatformIO project in a specific directory: - Build a PlatformIO project in a specific directory:
@ -26,4 +26,4 @@
- Build a PlatformIO project using a specific configuration file: - Build a PlatformIO project using a specific configuration file:
`pio ci --project-conf {{path/to/platformio.ini}}` `pio ci {{[-c|--project-conf]}} {{path/to/platformio.ini}}`

View file

@ -9,16 +9,16 @@
- Debug a specific PlatformIO project: - Debug a specific PlatformIO project:
`pio debug --project-dir {{path/to/platformio_project}}` `pio debug {{[-d|--project-dir]}} {{path/to/platformio_project}}`
- Debug a specific environment: - Debug a specific environment:
`pio debug --environment {{environment}}` `pio debug {{[-e|--environment]}} {{environment}}`
- Debug a PlatformIO project using a specific configuration file: - Debug a PlatformIO project using a specific configuration file:
`pio debug --project-conf {{path/to/platformio.ini}}` `pio debug {{[-c|--project-conf]}} {{path/to/platformio.ini}}`
- Debug a PlatformIO project using the `gdb` debugger: - Debug a PlatformIO project using the `gdb` debugger:
`pio debug --interface={{gdb}} {{gdb_options}}` `pio debug --interface {{gdb}} {{gdb_options}}`

View file

@ -17,11 +17,11 @@
- Start an interactive device monitor and listen to a specific port: - Start an interactive device monitor and listen to a specific port:
`pio device monitor --port {{/dev/ttyUSBX}}` `pio device monitor {{[-p|--port]}} {{/dev/ttyUSBX}}`
- Start an interactive device monitor and set a specific baud rate (defaults to 9600): - Start an interactive device monitor and set a specific baud rate (defaults to 9600):
`pio device monitor --baud {{57600}}` `pio device monitor {{[-b|--baud]}} {{57600}}`
- Start an interactive device monitor and set a specific EOL character (defaults to `CRLF`): - Start an interactive device monitor and set a specific EOL character (defaults to `CRLF`):

View file

@ -1,4 +1,4 @@
# pio package # pio pkg
> Manage packages in the registry. > Manage packages in the registry.
> Packages can only be removed within 72 hours (3 days) from the date that they are published. > Packages can only be removed within 72 hours (3 days) from the date that they are published.
@ -6,32 +6,32 @@
- Create a package tarball from the current directory: - Create a package tarball from the current directory:
`pio package pack --output {{path/to/package.tar.gz}}` `pio pkg pack {{[-o|--output]}} {{path/to/package.tar.gz}}`
- Create and publish a package tarball from the current directory: - Create and publish a package tarball from the current directory:
`pio package publish` `pio pkg publish`
- Publish the current directory and restrict public access to it: - Publish the current directory and restrict public access to it:
`pio package publish --private` `pio pkg publish --private`
- Publish a package: - Publish a package:
`pio package publish {{path/to/package.tar.gz}}` `pio pkg publish {{path/to/package.tar.gz}}`
- Publish a package with a custom release date (UTC): - Publish a package with a custom release date (UTC):
`pio package publish {{path/to/package.tar.gz}} --released-at "{{2021-04-08 21:15:38}}"` `pio pkg publish {{path/to/package.tar.gz}} --released-at "{{2021-04-08 21:15:38}}"`
- Remove all versions of a published package from the registry: - Remove all versions of a published package from the registry:
`pio package unpublish {{package}}` `pio pkg unpublish {{package}}`
- Remove a specific version of a published package from the registry: - Remove a specific version of a published package from the registry:
`pio package unpublish {{package}}@{{version}}` `pio pkg unpublish {{package}}@{{version}}`
- Undo the removal, putting all versions or a specific version of the package back into the registry: - Undo the removal, putting all versions or a specific version of the package back into the registry:
`pio package unpublish --undo {{package}}@{{version}}` `pio pkg unpublish --undo {{package}}@{{version}}`

View file

@ -9,15 +9,15 @@
- Initialize a new PlatformIO project in a specific directory: - Initialize a new PlatformIO project in a specific directory:
`pio project init --project-dir {{path/to/project_directory}}` `pio project init {{[-d|--project-dir]}} {{path/to/project_directory}}`
- Initialize a new PlatformIO project, specifying a board ID: - Initialize a new PlatformIO project, specifying a board ID:
`pio project init --board {{ATmega328P|uno|...}}` `pio project init {{[-b|--board]}} {{ATmega328P|uno|...}}`
- Initialize a new PlatformIO based project, specifying one or more project options: - Initialize a new PlatformIO based project, specifying one or more project options:
`pio project init --project-option="{{option}}={{value}}" --project-option="{{option}}={{value}}"` `pio project init {{[-O|--project-option]}} "{{option}}={{value}}" {{[-O|--project-option]}} "{{option}}={{value}}"`
- Print the configuration of a project: - Print the configuration of a project:

View file

@ -10,7 +10,7 @@
- Start a new Remote Agent with a specific name and share it with friends: - Start a new Remote Agent with a specific name and share it with friends:
`pio remote agent start --name {{agent_name}} --share {{example1@example.com}} --share {{example2@example.com}}` `pio remote agent start {{[-n|--name]}} {{agent_name}} {{[-s|--share]}} {{example1@example.com}} {{[-s|--share]}} {{example2@example.com}}`
- List devices from specified Agents (omit `--agent` to specify all Agents): - List devices from specified Agents (omit `--agent` to specify all Agents):

View file

@ -9,7 +9,7 @@
- List all available project targets of a specific environment: - List all available project targets of a specific environment:
`pio run --list-targets --environment {{environment}}` `pio run --list-targets {{[-e|--environment]}} {{environment}}`
- Run all targets: - Run all targets:
@ -17,12 +17,12 @@
- Run all targets of specified environments: - Run all targets of specified environments:
`pio run --environment {{environment1}} --environment {{environment2}}` `pio run {{[-e|--environment]}} {{environment1}} {{[-e|--environment]}} {{environment2}}`
- Run specified targets: - Run specified targets:
`pio run --target {{target1}} --target {{target2}}` `pio run {{[-t|--target]}} {{target1}} {{[-t|--target]}} {{target2}}`
- Run the targets of a specified configuration file: - Run the targets of a specified configuration file:
`pio run --project-conf {{path/to/platformio.ini}}` `pio run {{[-c|--project-conf]}} {{path/to/platformio.ini}}`

View file

@ -9,15 +9,15 @@
- Test only specific environments: - Test only specific environments:
`pio test --environment {{environment1}} --environment {{environment2}}` `pio test {{[-e|--environment]}} {{environment1}} {{[-e|--environment]}} {{environment2}}`
- Run only tests whose name matches a specific glob pattern: - Run only tests whose name matches a specific glob pattern:
`pio test --filter "{{pattern}}"` `pio test {{[-f|--filter]}} "{{pattern}}"`
- Ignore tests whose name matches a specific glob pattern: - Ignore tests whose name matches a specific glob pattern:
`pio test --ignore "{{pattern}}"` `pio test {{[-i|--ignore]}} "{{pattern}}"`
- Specify a port for firmware uploading: - Specify a port for firmware uploading:
@ -25,4 +25,4 @@
- Specify a custom configuration file for running the tests: - Specify a custom configuration file for running the tests:
`pio test --project-conf {{path/to/platformio.ini}}` `pio test {{[-c|--project-conf]}} {{path/to/platformio.ini}}`

View file

@ -6,11 +6,11 @@
- Display help and list subcommands: - Display help and list subcommands:
`pio --help` `pio {{[-h|--help]}}`
- Display help for a specific subcommand: - Display help for a specific subcommand:
`pio {{subcommand}} --help` `pio {{subcommand}} {{[-h|--help]}}`
- Display version: - Display version:

View file

@ -1,7 +1,7 @@
# texdoc # texdoc
> Search for appropriate documentation for (La)TeX commands or packages. > Search for appropriate documentation for (La)TeX commands or packages.
> More information: <https://texdoc.org/index.html>. > More information: <https://manned.org/texdoc>.
- Open the first search result in the default PDF viewer: - Open the first search result in the default PDF viewer:
@ -9,7 +9,7 @@
- List the best search results: - List the best search results:
`texdoc --list {{search}}` `texdoc {{[-l|--list]}} {{search}}`
- Open full documentation of texdoc: - Open full documentation of texdoc:

View file

@ -1,7 +1,7 @@
# texliveonfly # texliveonfly
> Downloads missing TeX Live packages while compiling `.tex` files. > Downloads missing TeX Live packages while compiling `.tex` files.
> More information: <https://ctan.org/pkg/texliveonfly>. > More information: <https://ctan.org/tex-archive/support/texliveonfly>.
- Download missing packages while compiling: - Download missing packages while compiling:
@ -9,7 +9,7 @@
- Use a specific compiler (defaults to `pdflatex`): - Use a specific compiler (defaults to `pdflatex`):
`texliveonfly --compiler={{compiler}} {{source.tex}}` `texliveonfly {{[-c|--compiler]}} {{compiler}} {{source.tex}}`
- Use a custom TeX Live `bin` folder: - Use a custom TeX Live `bin` folder:

View file

@ -13,12 +13,12 @@
- Display the credentials of a configured repository: - Display the credentials of a configured repository:
`transcrypt --display` `transcrypt {{[-d|--display]}}`
- Initialize and decrypt a fresh clone of a configured repository: - Initialize and decrypt a fresh clone of a configured repository:
`transcrypt --cipher={{cipher}}` `transcrypt {{[-c|--cipher]}} {{cipher}}`
- Rekey to change the encryption cipher or password: - Rekey to change the encryption cipher or password:
`transcrypt --rekey` `transcrypt {{[-r|--rekey]}}`

View file

@ -1,7 +1,7 @@
# uvicorn # uvicorn
> Python ASGI HTTP Server, for asynchronous projects. > Python ASGI HTTP Server, for asynchronous projects.
> More information: <https://www.uvicorn.org/>. > More information: <https://www.uvicorn.org/settings/>.
- Run Python web app: - Run Python web app:

View file

@ -5,12 +5,12 @@
- Display a diff of the changes that would be made, without making them (dry-run): - Display a diff of the changes that would be made, without making them (dry-run):
`yapf --diff {{path/to/file}}` `yapf {{[-d|--diff]}} {{path/to/file}}`
- Format the file in-place and display a diff of the changes: - Format the file in-place and display a diff of the changes:
`yapf --diff --in-place {{path/to/file}}` `yapf {{[-d|--diff]}} {{[-i|--in-place]}} {{path/to/file}}`
- Recursively format all Python files in a directory, concurrently: - Recursively format all Python files in a directory, concurrently:
`yapf --recursive --in-place --style {{pep8}} --parallel {{path/to/directory}}` `yapf {{[-r|--recursive]}} {{[-i|--in-place]}} --style {{pep8}} {{[-p|--parallel]}} {{path/to/directory}}`