diff --git a/tldr/anki b/tldr/anki index b60a911f..64ea7df6 100644 --- a/tldr/anki +++ b/tldr/anki @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # anki > Powerful, intelligent flashcard program. -> More information: . +> More information: . - Launch the GUI: diff --git a/tldr/antibody b/tldr/antibody index 05a810ad..f12d88c4 100644 --- a/tldr/antibody +++ b/tldr/antibody @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # antibody > "The fastest" shell plugin manager. -> More information: . +> More information: . - Bundle all plugins for static loading: diff --git a/tldr/asciidoctor b/tldr/asciidoctor index e5a43e91..4cf9a398 100644 --- a/tldr/asciidoctor +++ b/tldr/asciidoctor @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # asciidoctor > Convert AsciiDoc files to a publishable format. -> More information: . +> More information: . - Convert a specific `.adoc` file to HTML (the default output format): diff --git a/tldr/asciiquarium b/tldr/asciiquarium index 272c941f..06a20f06 100644 --- a/tldr/asciiquarium +++ b/tldr/asciiquarium @@ -6,6 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # asciiquarium > Display an animated aquarium in ASCII art inside the terminal. +> See also: `cmatrix`, `cbonsai`, `pipes.sh`. > More information: . - Start `asciiquarium`: diff --git a/tldr/atom b/tldr/atom index 53911cda..43aa5839 100644 --- a/tldr/atom +++ b/tldr/atom @@ -7,20 +7,20 @@ source: https://github.com/tldr-pages/tldr.git > A cross-platform pluggable text editor. > Plugins are managed by `apm`. -> Note: Atom has been sunsetted and is no longer actively maintained. +> Note: Atom has been sunsetted and is no longer actively maintained. Use `zed` instead. > More information: . - Open a file or directory: `atom {{path/to/file_or_directory}}` -- Open a file or directory in a [n]ew window: +- Open a file or directory in a new window: -`atom -n {{path/to/file_or_directory}}` +`atom {{[-n|--new-window]}} {{path/to/file_or_directory}}` - Open a file or directory in an existing window: -`atom --add {{path/to/file_or_directory}}` +`atom {{[-a|--add]}} {{path/to/file_or_directory}}` - Open Atom in safe mode (does not load any additional packages): @@ -28,8 +28,8 @@ source: https://github.com/tldr-pages/tldr.git - Prevent Atom from forking into the background, keeping Atom attached to the terminal: -`atom --foreground` +`atom {{[-f|--foreground]}}` - Wait for Atom window to close before returning (useful for Git commit editor): -`atom --wait` +`atom {{[-w|--wait]}}` diff --git a/tldr/cbonsai b/tldr/cbonsai index cae820ac..25fa9b09 100644 --- a/tldr/cbonsai +++ b/tldr/cbonsai @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # cbonsai > A beautifully random bonsai tree generator. -> See also: `cmatrix`. +> See also: `cmatrix`, `asciiquarium`, `pipes.sh`. > More information: . - Generate a bonsai in live mode: diff --git a/tldr/cmatrix b/tldr/cmatrix index e816c626..82215b63 100644 --- a/tldr/cmatrix +++ b/tldr/cmatrix @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # cmatrix > Shows a scrolling Matrix like screen in the terminal. -> See also: `cbonsai`. +> See also: `cbonsai`, `asciiquarium`, `pipes.sh`. > More information: . - Enable [a]synchronous scrolling: diff --git a/tldr/doppler b/tldr/doppler index adbb8854..c405aa9a 100644 --- a/tldr/doppler +++ b/tldr/doppler @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # doppler -> Manage environment variables across different environments using Doppler. +> Manage environment variables across different environments. > Some subcommands such as `run` and `secrets` have their own usage documentation. > More information: . diff --git a/tldr/elixir b/tldr/elixir index a78d6fb4..7b36b680 100644 --- a/tldr/elixir +++ b/tldr/elixir @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # elixir > Elixir programming language interpreter. -> More information: . +> More information: . - Run an Elixir file: diff --git a/tldr/fdfind b/tldr/fdfind new file mode 100644 index 00000000..549561c3 --- /dev/null +++ b/tldr/fdfind @@ -0,0 +1,12 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# fdfind + +> This command is an alias of `fd`. + +- View documentation for the original command: + +`tldr fd` diff --git a/tldr/fossil b/tldr/fossil index 05cdacfb..5182733b 100644 --- a/tldr/fossil +++ b/tldr/fossil @@ -5,22 +5,38 @@ source: https://github.com/tldr-pages/tldr.git --- # fossil -> Distributed version control system. +> Distributed version control system with a built-in wiki, bug tracker, and web interface. > Some subcommands such as `commit` have their own usage documentation. > More information: . -- Execute a Fossil subcommand: +- Initialize a new empty Fossil repository: -`fossil {{subcommand}}` +`fossil init {{repository_name.fossil}}` -- Display help: +- Create a local copy of a remote repository: -`fossil help` +`fossil clone {{remote_url}}` -- Display help for a specific subcommand (like `add`, `commit`, etc.): +- Show an overview of the current repository state: -`fossil help {{subcommand}}` +`fossil status` -- Display version: +- Stage a new file: -`fossil version` +`fossil add {{path/to/file}}` + +- Stage a file for removal: + +`fossil {{[rm|delete]}} {{path/to/file}}` + +- Check in all staged changes: + +`fossil {{[ci|commit]}} {{[-m|--comment]}} "{{comment}}"` + +- Push changes from the local repository to a remote repository: + +`fossil push {{remote_url}}` + +- Pull changes from a remote repository into the local repository: + +`fossil pull {{remote_url}}` diff --git a/tldr/gnucash b/tldr/gnucash index 6fd45603..438f159e 100644 --- a/tldr/gnucash +++ b/tldr/gnucash @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # gnucash > Personal and small-business financial-accounting software. -> More information: . +> More information: . - Launch GnuCash and load the previously opened file: diff --git a/tldr/helix b/tldr/helix index 9879033b..934aa976 100644 --- a/tldr/helix +++ b/tldr/helix @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Helix, A post-modern text editor, provides several modes for different kinds of text manipulation. > Pressing `` enters insert mode. `` enters normal mode, which enables the use of Helix commands. -> More information: . +> More information: . - Open a file: diff --git a/tldr/ivpn b/tldr/ivpn index bed8fc14..87a52c81 100644 --- a/tldr/ivpn +++ b/tldr/ivpn @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Interface for the IVPN client. > See also: `fastd`, `mozillavpn`, `mullvad`, `warp-cli`. -> More information: . +> More information: . - Print the current state of IVPN, including the connection and firewall status: diff --git a/tldr/k6 b/tldr/k6 index fca3c6b3..20409522 100644 --- a/tldr/k6 +++ b/tldr/k6 @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # k6 > Open source load testing tool and SaaS for engineering teams. -> More information: . +> More information: . - Run load test locally: diff --git a/tldr/kak b/tldr/kak index f80bee8d..5c6557e8 100644 --- a/tldr/kak +++ b/tldr/kak @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Kakoune is a mode-based code editor implementing the "multiple selections" paradigm. > Data can be selected and simultaneously edited in different locations, using multiple selections; users can also connect to the same session for collaborative editing. -> More information: . +> More information: . - Open a file and enter normal mode, to execute commands: diff --git a/tldr/keepass2 b/tldr/keepass2 index 3dc280f5..69fe4ac6 100644 --- a/tldr/keepass2 +++ b/tldr/keepass2 @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # keepass2 > A light-weight password manager. -> More information: . +> More information: . - Start KeePass 2, opening the most recently opened password database: diff --git a/tldr/linux/dnf b/tldr/linux/dnf index 9ad3cc3d..ef3010dd 100644 --- a/tldr/linux/dnf +++ b/tldr/linux/dnf @@ -8,7 +8,7 @@ source: https://github.com/tldr-pages/tldr.git > Package management utility for RHEL, Fedora, and CentOS (replaces yum). > Some subcommands such as `group` and `config-manager` have their own usage documentation. > For equivalent commands in other package managers, see . -> More information: . +> More information: . - Upgrade installed packages to the newest available versions: diff --git a/tldr/linux/dnf5 b/tldr/linux/dnf5 index 0a703b1b..b59443b1 100644 --- a/tldr/linux/dnf5 +++ b/tldr/linux/dnf5 @@ -8,7 +8,7 @@ source: https://github.com/tldr-pages/tldr.git > Package management utility for RHEL, Fedora, and CentOS (it replaces dnf, which in turn replaced yum). > DNF5 is a C++ rewrite of the DNF package manager featuring improved performance and a smaller size. > For equivalent commands in other package managers, see . -> More information: . +> More information: . - Upgrade installed packages to the newest available versions: diff --git a/tldr/linux/fluidsynth b/tldr/linux/fluidsynth index 49419cca..de0e8980 100644 --- a/tldr/linux/fluidsynth +++ b/tldr/linux/fluidsynth @@ -10,11 +10,11 @@ source: https://github.com/tldr-pages/tldr.git - Play a MIDI file: -`fluidsynth {{path/to/soundfont.sf2}} {{path/to/file.midi}}` +`fluidsynth {{/usr/share/soundfonts/soundfont.sf2}} {{path/to/file.midi}}` - Specify the audio driver: -`fluidsynth {{[-a|--audio-driver]}} {{pipewire|pulseaudio}} {{path/to/soundfont.sf2}} {{path/to/file.midi}}` +`fluidsynth {{[-a|--audio-driver]}} {{pipewire|pulseaudio}} {{/usr/share/soundfonts/soundfont.sf2}} {{path/to/file.midi}}` - Display help: diff --git a/tldr/linux/tuned-adm b/tldr/linux/tuned-adm index 151a86f7..9bee03d3 100644 --- a/tldr/linux/tuned-adm +++ b/tldr/linux/tuned-adm @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # tuned-adm > Manage and optimize system performance tuning profiles on Linux. -> More information: . +> More information: . - List available profiles: diff --git a/tldr/linux/usbip b/tldr/linux/usbip index afd164cf..42e7cc1e 100644 --- a/tldr/linux/usbip +++ b/tldr/linux/usbip @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # usbip > Use USB devices remotely. -> More information: . +> More information: . - List all local USB devices and their bus ID's: diff --git a/tldr/lynx b/tldr/lynx index 7a880446..3cef4083 100644 --- a/tldr/lynx +++ b/tldr/lynx @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # lynx > Command-line web browser. -> More information: . +> More information: . - Visit a website: diff --git a/tldr/pipes.sh b/tldr/pipes.sh index 3c86e609..086dae34 100644 --- a/tldr/pipes.sh +++ b/tldr/pipes.sh @@ -6,6 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # pipes.sh > A Bash script which draws randomly pathed pipes over the terminal. +> See also: `cmatrix`, `cbonsai`, `asciiquarium`. > More information: . - Change the pa[t]tern of the pipes: diff --git a/tldr/play b/tldr/play index 02706070..bf921c2a 100644 --- a/tldr/play +++ b/tldr/play @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Audio player of SoX - Sound eXchange. > Plays any audio, with audio formats identified by the extension. -> More information: . +> More information: . - Play the given audio file: diff --git a/tldr/plocate b/tldr/plocate index 5808faf6..81f218af 100644 --- a/tldr/plocate +++ b/tldr/plocate @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Find filenames quickly. > Make sure to run `sudo updatedb` to include new files. -> More information: . +> More information: . - Look for patterns in the database (recomputed periodically): diff --git a/tldr/pm2 b/tldr/pm2 index d6d9db68..2f42cae1 100644 --- a/tldr/pm2 +++ b/tldr/pm2 @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Process manager for Node.js. > Used for log management, monitoring and configuring processes. -> More information: . +> More information: . - Start a process with a name that can be used for later operations: diff --git a/tldr/psalm b/tldr/psalm index 91103729..a70dd552 100644 --- a/tldr/psalm +++ b/tldr/psalm @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # psalm > A static analysis tool for finding errors in PHP applications. -> More information: . +> More information: . - Generate a Psalm configuration: diff --git a/tldr/psysh b/tldr/psysh index 77000f7c..6e8aa10b 100644 --- a/tldr/psysh +++ b/tldr/psysh @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # psysh > A runtime developer console, interactive debugger and REPL for PHP. -> More information: . +> More information: . - Open a shell in the current directory: @@ -18,4 +18,4 @@ source: https://github.com/tldr-pages/tldr.git - Use a specific configuration file: -`psysh --config {{path/to/file}}` +`psysh {{[-c|--config]}} {{path/to/file}}` diff --git a/tldr/pycodestyle b/tldr/pycodestyle index b5dd67d9..5ad40f11 100644 --- a/tldr/pycodestyle +++ b/tldr/pycodestyle @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # pycodestyle > Check Python code against PEP 8 style conventions. -> More information: . +> More information: . - Check the style of a single file: diff --git a/tldr/pypy b/tldr/pypy index 1217585f..992c50f9 100644 --- a/tldr/pypy +++ b/tldr/pypy @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # pypy > Fast and compliant alternative implementation of the Python language. -> More information: . +> More information: . - Start a REPL (interactive shell): diff --git a/tldr/quarto b/tldr/quarto index fded9d83..ee9b9c31 100644 --- a/tldr/quarto +++ b/tldr/quarto @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # quarto > An open-source scientific and technical publishing system built on Pandoc. -> More information: . +> More information: . - Create a new project: diff --git a/tldr/r b/tldr/r index 80ba1ec5..f25a4392 100644 --- a/tldr/r +++ b/tldr/r @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # R > R language interpreter. -> More information: . +> More information: . - Start a REPL (interactive shell): @@ -14,7 +14,7 @@ source: https://github.com/tldr-pages/tldr.git - Start R in vanilla mode (i.e. a blank session that doesn't save the workspace at the end): -`R {{[-v|--vanilla]}}` +`R --vanilla` - Execute a file: diff --git a/tldr/rclone b/tldr/rclone index 45a061f7..e53f43ea 100644 --- a/tldr/rclone +++ b/tldr/rclone @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # rclone > Copy, synchronize or move files and directories to and from many cloud services. -> More information: . +> More information: . - Launch an interactive menu to setup rclone: diff --git a/tldr/react-native b/tldr/react-native index 02ae85c4..8a3e7b67 100644 --- a/tldr/react-native +++ b/tldr/react-native @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # react-native > A framework for building native apps with React. -> More information: . +> More information: . - Initialize a new React Native project in a directory of the same name: diff --git a/tldr/restic b/tldr/restic index 479f5519..d9db417a 100644 --- a/tldr/restic +++ b/tldr/restic @@ -6,27 +6,27 @@ source: https://github.com/tldr-pages/tldr.git # restic > A fast, secure and secure backup program. -> More information: . +> More information: . - Initialize a backup repository in the specified local directory: -`restic init --repo {{path/to/repository}}` +`restic init {{[-r|--repo]}} {{path/to/repository}}` - Backup a directory to the repository: -`restic --repo {{path/to/repository}} backup {{path/to/directory}}` +`restic {{[-r|--repo]}} {{path/to/repository}} backup {{path/to/directory}}` - Show backup snapshots currently stored in the repository: -`restic --repo {{path/to/repository}} snapshots` +`restic {{[-r|--repo]}} {{path/to/repository}} snapshots` - Restore a specific backup snapshot to a target directory: -`restic --repo {{path/to/repository}} restore {{latest|snapshot_id}} --target {{path/to/target}}` +`restic {{[-r|--repo]}} {{path/to/repository}} restore {{latest|snapshot_id}} --target {{path/to/target}}` - Restore a specific path from a specific backup to a target directory: -`restic --repo {{path/to/repository}} restore {{snapshot_id}} --target {{path/to/target}} --include {{path/to/restore}}` +`restic {{[-r|--repo]}} {{path/to/repository}} restore {{snapshot_id}} --target {{path/to/target}} --include {{path/to/restore}}` - Clean up the repository and keep only the most recent snapshot of each unique backup: diff --git a/tldr/rspec b/tldr/rspec index fb332c0b..5f947586 100644 --- a/tldr/rspec +++ b/tldr/rspec @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # rspec > Behavior-driven development testing framework written in Ruby to test Ruby code. -> More information: . +> More information: . - Initialize an .rspec configuration and a spec helper file: diff --git a/tldr/rvm b/tldr/rvm index fa9c0e6b..8fdfc32f 100644 --- a/tldr/rvm +++ b/tldr/rvm @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # rvm > Easily installing, managing, and working with multiple ruby environments. -> More information: . +> More information: . - Install one or more versions of Ruby: diff --git a/tldr/skaffold b/tldr/skaffold index 62110c59..113f8bc0 100644 --- a/tldr/skaffold +++ b/tldr/skaffold @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # skaffold > Facilitate continuous development for Kubernetes applications. -> More information: . +> More information: . - Build the artifacts: diff --git a/tldr/soupault b/tldr/soupault index d7f841f0..e1d8925a 100644 --- a/tldr/soupault +++ b/tldr/soupault @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > A static website generator based on HTML element tree rewriting. > It can also be used as an HTML post-processor or metadata extractor. -> More information: . +> More information: . - Initialize a minimal website project in the current working directory: diff --git a/tldr/speedcrunch b/tldr/speedcrunch index 3e127f58..cc69d412 100644 --- a/tldr/speedcrunch +++ b/tldr/speedcrunch @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # speedcrunch > A high-precision scientific calculator. -> More information: . +> More information: . - Start SpeedCrunch: diff --git a/tldr/spicetify b/tldr/spicetify index e7d65af4..392cfd3a 100644 --- a/tldr/spicetify +++ b/tldr/spicetify @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # spicetify > Customize the Spotify client UI and functionality. -> More information: . +> More information: . - Generate a configuration file on very first run and display help: diff --git a/tldr/sqlmap b/tldr/sqlmap index aca86d91..9b2239d9 100644 --- a/tldr/sqlmap +++ b/tldr/sqlmap @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # sqlmap > Detect and exploit SQL injection flaws. -> More information: . +> More information: . - Run sqlmap against a single target URL: diff --git a/tldr/streamlink b/tldr/streamlink index b1341feb..17ab8afb 100644 --- a/tldr/streamlink +++ b/tldr/streamlink @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # streamlink > Extracts streams from various services and pipes them into a video player of choice. -> More information: . +> More information: . - Attempt to extract streams from the URL specified, and if it's successful, print out a list of available streams to choose from: @@ -22,7 +22,7 @@ source: https://github.com/tldr-pages/tldr.git - Use a specific player to feed stream data to (VLC is used by default if found): -`streamlink --player={{mpv}} {{example.com/stream}} {{best}}` +`streamlink {{[-p|--player]}} {{mpv}} {{example.com/stream}} {{best}}` - Skip a specific amount of time from the beginning of the stream. For live streams, this is a negative offset from the end of the stream (rewind): @@ -34,8 +34,8 @@ source: https://github.com/tldr-pages/tldr.git - Write stream data to a file instead of playing it: -`streamlink --output {{path/to/file.ts}} {{example.com/stream}} {{best}}` +`streamlink {{[-o|--output]}} {{path/to/file.ts}} {{example.com/stream}} {{best}}` - Open the stream in the player, while at the same time writing it to a file: -`streamlink --record {{path/to/file.ts}} {{example.com/stream}} {{best}}` +`streamlink {{[-r|--record]}} {{path/to/file.ts}} {{example.com/stream}} {{best}}` diff --git a/tldr/swc b/tldr/swc index 24a995ef..65489539 100644 --- a/tldr/swc +++ b/tldr/swc @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # swc > JavaScript and TypeScript compiler written in Rust. -> More information: . +> More information: . - Transpile a specified input file and output to `stdout`: @@ -14,15 +14,15 @@ source: https://github.com/tldr-pages/tldr.git - Transpile the input file every time it is changed: -`swc {{path/to/file}} --watch` +`swc {{path/to/file}} {{[-w|--watch]}}` - Transpile a specified input file and output to a specific file: -`swc {{path/to/input_file}} --out-file {{path/to/output_file}}` +`swc {{path/to/input_file}} {{[-o|--out-file]}} {{path/to/output_file}}` - Transpile a specified input directory and output to a specific directory: -`swc {{path/to/input_directory}} --out-dir {{path/to/output_directory}}` +`swc {{path/to/input_directory}} {{[-d|--out-dir]}} {{path/to/output_directory}}` - Transpile a specified input directory using a specific configuration file: diff --git a/tldr/swig b/tldr/swig index bff50c07..6e0504bd 100644 --- a/tldr/swig +++ b/tldr/swig @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Generate bindings between C/C++ code and various high level languages such as JavaScript, Python, C#, and more. > It uses special `.i` or `.swg` files to generate the bindings (C/C++ with SWIG directives), then outputs a C/C++ file that contains all the wrapper code needed to build an extension module. -> More information: . +> More information: . - Generate a binding between C++ and Python: diff --git a/tldr/tcpdump b/tldr/tcpdump index 9ac7a9d8..49581f78 100644 --- a/tldr/tcpdump +++ b/tldr/tcpdump @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # tcpdump > Dump traffic on a network. -> More information: . +> More information: . - List available network interfaces: diff --git a/tldr/terragrunt b/tldr/terragrunt index 80c3de4a..785ded98 100644 --- a/tldr/terragrunt +++ b/tldr/terragrunt @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # terragrunt > Keep your Terraform CLI arguments DRY. -> More information: . +> More information: . - Generate and show an execution plan: diff --git a/tldr/traefik b/tldr/traefik index 2279f06a..ea9e78ce 100644 --- a/tldr/traefik +++ b/tldr/traefik @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # traefik > An HTTP reverse proxy and load balancer. -> More information: . +> More information: . - Start the server with the default configuration: diff --git a/tldr/travis b/tldr/travis index 349ae790..1a06ebe5 100644 --- a/tldr/travis +++ b/tldr/travis @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # travis > Interface with Travis CI. -> More information: . +> More information: . - Display the client version: diff --git a/tldr/upx b/tldr/upx index a1ccd4a0..3a85aab7 100644 --- a/tldr/upx +++ b/tldr/upx @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # upx > Compress or decompress executables. -> More information: . +> More information: . - Compress executable: diff --git a/tldr/vale b/tldr/vale index 2e152654..7d8fe4f3 100644 --- a/tldr/vale +++ b/tldr/vale @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # vale > Extensible style checker that supports multiple markup formats, such as Markdown and AsciiDoc. -> More information: . +> More information: . - Check the style of a file: diff --git a/tldr/volta b/tldr/volta index 3134457b..8e1ca622 100644 --- a/tldr/volta +++ b/tldr/volta @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # volta > A JavaScript Tool Manager that installs Node.js runtimes, npm and Yarn package managers, or any binaries from npm. -> More information: . +> More information: . - List all installed tools: diff --git a/tldr/windows/scoop b/tldr/windows/scoop index 3784322d..8f1001c1 100644 --- a/tldr/windows/scoop +++ b/tldr/windows/scoop @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > The Scoop package manager. > Some subcommands such as `bucket` have their own usage documentation. -> More information: . +> More information: . - Install a package: diff --git a/tldr/wormhole b/tldr/wormhole index d49f24a6..f680b00d 100644 --- a/tldr/wormhole +++ b/tldr/wormhole @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # wormhole > Get things from one computer to another, safely. -> More information: . +> More information: . - Send a file: @@ -16,7 +16,7 @@ source: https://github.com/tldr-pages/tldr.git `wormhole receive {{wormhole_code}}` -- Send raw text: +- Send raw text interactively: `wormhole send`