diff --git a/tldr/bindkey b/tldr/bindkey index 2b27d7fa..e640e06e 100644 --- a/tldr/bindkey +++ b/tldr/bindkey @@ -24,3 +24,11 @@ source: https://github.com/tldr-pages/tldr.git - View the hotkey in a key[M]ap: `bindkey -M main` + +- Enable [v]i mode: + +`bindkey -v` + +- Enable [e]macs mode (default mode): + +`bindkey -e` diff --git a/tldr/cups b/tldr/cups index 10993c4f..93f62854 100644 --- a/tldr/cups +++ b/tldr/cups @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # CUPS > Open source printing system. -> CUPS isn't a command, but a set of commands. +> Note: CUPS isn't a command, but a set of commands. > More information: . - View documentation for running the CUPS daemon: diff --git a/tldr/flips b/tldr/flips index f9932903..e1c5cd0c 100644 --- a/tldr/flips +++ b/tldr/flips @@ -5,17 +5,17 @@ source: https://github.com/tldr-pages/tldr.git --- # flips -> Create and apply patches for IPS and BPS files. -> More information: . +> Create and apply IPS and BPS patches. +> More information: . -- Start Flips to create and apply patches interactively: +- Run Flips interactively: `flips` -- Apply a patch and create a new ROM file: +- Apply a patch to a file: -`flips --apply {{patch.bps}} {{rom.smc}} {{hack.smc}}` +`flips --apply {{path/to/patch.bps}} {{path/to/source_file}} {{path/to/output_file}}` -- Create a patch from two ROMs: +- Create a patch from two files: -`flips --create {{rom.smc}} {{hack.smc}} {{patch.bps}}` +`flips --create {{path/to/original_file}} {{path/to/modified_file}} {{path/to/output_patch.bps}}` diff --git a/tldr/linux/distrobox b/tldr/linux/distrobox index edd1a333..11570b40 100644 --- a/tldr/linux/distrobox +++ b/tldr/linux/distrobox @@ -6,8 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # distrobox > Use any Linux distribution inside your terminal in a container. Install & use packages inside it while tightly integrating with the host OS, sharing storage (`home` directory) and hardware. -> `distrobox` isn't a command, but a set of commands. -> Note: It uses Podman or Docker to create your containers. +> Note: `distrobox` isn't a command, but a set of commands. > More information: . - View documentation for creating containers: diff --git a/tldr/linux/protonvpn b/tldr/linux/protonvpn index 3273ed71..5d3fc2dc 100644 --- a/tldr/linux/protonvpn +++ b/tldr/linux/protonvpn @@ -5,34 +5,30 @@ source: https://github.com/tldr-pages/tldr.git --- # protonvpn -> Unofficial third-party ProtonVPN client. -> See also: `protonvpn-connect`. -> More information: . +> Official Proton VPN client. +> Some subcommands such as `connect` have their own usage documentation. +> More information: . -- Initialize ProtonVPN profile: +- Initialize Proton VPN profile: -`protonvpn init` +`protonvpn signin` -- Connect to ProtonVPN interactively: +- Remove account credentials: -`protonvpn {{c|connect}}` +`protonvpn signout` -- Display connection status: +- Display Proton VPN account information: -`protonvpn {{s|status}}` +`protonvpn info` -- Disconnect from ProtonVPN: +- Connect to Proton VPN interactively: -`protonvpn {{d|disconnect}}` +`protonvpn connect` -- Reconnect or connect to the last server used: +- Disconnect from Proton VPN: -`protonvpn {{r|reconnect}}` +`protonvpn disconnect` -- Refresh OpenVPN configuration and server data: +- Display help: -`protonvpn refresh` - -- Display help for a subcommand: - -`protonvpn {{subcommand}} --help` +`protonvpn {{[-h|--help]}}` diff --git a/tldr/linux/protonvpn-connect b/tldr/linux/protonvpn-connect index 475b477f..6277786d 100644 --- a/tldr/linux/protonvpn-connect +++ b/tldr/linux/protonvpn-connect @@ -5,29 +5,25 @@ source: https://github.com/tldr-pages/tldr.git --- # protonvpn connect -> Connect to ProtonVPN. -> More information: . +> Connect to Proton VPN. +> More information: . -- Connect to ProtonVPN interactively: +- Connect to Proton VPN using the fastest server available: -`protonvpn {{[c|connect]}}` +`protonvpn connect` -- Connect to ProtonVPN using the fastest server available: +- Connect to the fastest server in a specific country: -`protonvpn {{[c|connect]}} {{[-f|--fastest]}}` +`protonvpn connect --country "{{country_code_or_name}}"` -- Connect to ProtonVPN using a specific server with a specific protocol: +- Connect to the fastest server in a specific city: -`protonvpn {{[c|connect]}} {{server_name}} -p {{udp|tcp}}` +`protonvpn connect --city "{{city_name}}"` -- Connect to ProtonVPN using a random server with a specific protocol: +- Connect to a specific server: -`protonvpn {{[c|connect]}} {{[-r|--random]}} -p {{udp|tcp}}` - -- Connect to ProtonVPN using the fastest Tor-supporting server: - -`protonvpn {{[c|connect]}} --tor` +`protonvpn connect {{server_name}}` - Display help: -`protonvpn {{[c|connect]}} --help` +`protonvpn connect {{[-h|--help]}}` diff --git a/tldr/linux/xbps b/tldr/linux/xbps index f8aa84c7..917dc399 100644 --- a/tldr/linux/xbps +++ b/tldr/linux/xbps @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # xbps > The X Binary Package System is the package manager used by Void Linux. -> `xbps` isn't a command, but a set of commands. +> Note: `xbps` isn't a command, but a set of commands. > For equivalent commands in other package managers, see . > More information: . diff --git a/tldr/pyenv-virtualenv b/tldr/pyenv-virtualenv index db542117..34fa999d 100644 --- a/tldr/pyenv-virtualenv +++ b/tldr/pyenv-virtualenv @@ -6,11 +6,11 @@ source: https://github.com/tldr-pages/tldr.git # pyenv virtualenv > Create virtual environments based on one's installed Python distributions. -> More information: . +> More information: . - Create a new Python 3.6.6 virtual environment: -`pyenv virtualenv {{3.6.6}} {{virtualenv_name}}` +`pyenv virtualenv 3.6.6 {{virtualenv_name}}` - List all existing virtual environments: diff --git a/tldr/regex b/tldr/regex index e0ffac0e..4e20b61a 100644 --- a/tldr/regex +++ b/tldr/regex @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # regex > Regular expressions (`regex`) are patterns used to match, search, and manipulate text. -> `regex` isn't a command, but syntax to be used with other commands. +> Note: `regex` isn't a command, but syntax to be used with other commands. > More information: . - Match any single character: diff --git a/tldr/transmission b/tldr/transmission index bb11d7c7..5062c9e1 100644 --- a/tldr/transmission +++ b/tldr/transmission @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # transmission > A simple torrent client. -> Transmission isn't a command, but a set of commands. +> Note: Transmission isn't a command, but a set of commands. > More information: . - View documentation for running Transmission's daemon: diff --git a/tldr/unzip b/tldr/unzip index 0f687061..7e4a72af 100644 --- a/tldr/unzip +++ b/tldr/unzip @@ -27,8 +27,8 @@ source: https://github.com/tldr-pages/tldr.git - List the contents of a specific archive without extracting them: -`unzip -l {{path/to/archive.zip}}` +`unzip -l {{path/to/archive}}.zip` -- Extract a specific file from an archive: +- Extract specific files from an archive: -`unzip -j {{path/to/archive.zip}} {{path/to/file1_in_archive path/to/file2_in_archive ...}}` +`unzip -j {{path/to/archive}}.zip {{path/to/file1_in_archive path/to/file2_in_archive ...}}` diff --git a/tldr/windows/pabcnetcclear b/tldr/windows/pabcnetcclear index a8d2c31c..5dc534d8 100644 --- a/tldr/windows/pabcnetcclear +++ b/tldr/windows/pabcnetcclear @@ -14,7 +14,7 @@ source: https://github.com/tldr-pages/tldr.git - Compile the specified source file into an executable with the specified name: -`pabcnetcclear /Output:{{path o\_file.exe}} {{path o\source_file.pas}}` +`pabcnetcclear /Output:{{path o ile.exe}} {{path o\source_file.pas}}` - Compile the specified source file into an executable with the same name along with/without debug information: diff --git a/tldr/zerotier-cli b/tldr/zerotier-cli index 5594e00e..7330624a 100644 --- a/tldr/zerotier-cli +++ b/tldr/zerotier-cli @@ -6,6 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # zerotier-cli > Control the local ZeroTier virtual network service. +> See also: `zerotier-idtool`, `zerotier-one`. > More information: . - Join a network: diff --git a/tldr/zerotier-idtool b/tldr/zerotier-idtool index 1d4c238e..f37aed81 100644 --- a/tldr/zerotier-idtool +++ b/tldr/zerotier-idtool @@ -6,6 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # zerotier-idtool > Create and manipulate ZeroTier identities. +> See also: `zerotier-cli`, `zerotier-one`. > More information: . - Generate a new ZeroTier identity and output the secret part to `stdout`: diff --git a/tldr/zerotier-one b/tldr/zerotier-one index 3cc33997..85f9d10f 100644 --- a/tldr/zerotier-one +++ b/tldr/zerotier-one @@ -6,6 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # zerotier-one > Start the ZeroTier One daemon. +> See also: `zerotier-cli`, `zerotier-idtool`. > More information: . - Start the ZeroTier One [d]aemon: