diff --git a/tldr/android/settings b/tldr/android/settings index 0d738e1d..69a39db5 100644 --- a/tldr/android/settings +++ b/tldr/android/settings @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # settings > Get information about the Android OS. -> More information: . +> More information: . - List the settings in the `global` namespace: diff --git a/tldr/android/wm b/tldr/android/wm index 65c9df11..4e45a969 100644 --- a/tldr/android/wm +++ b/tldr/android/wm @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Show information about the screen of an Android device. > This command can only be used through `adb shell`. -> More information: . +> More information: . - Display the physical size of an Android device's screen: diff --git a/tldr/b2 b/tldr/b2 new file mode 100644 index 00000000..75c8d31a --- /dev/null +++ b/tldr/b2 @@ -0,0 +1,41 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# b2 + +> Access all features of Backblaze B2 Cloud Storage easily. +> More information: . + +- Access your account: + +`b2 authorize_account {{key_id}}` + +- List the existing buckets in your account: + +`b2 list_buckets` + +- Create a bucket, provide the bucket name, and access type (e.g. allPublic or allPrivate): + +`b2 create_bucket {{bucket_name}} {{allPublic|allPrivate}}` + +- Upload a file. Choose a file, bucket, and a folder: + +`b2 upload_file {{bucket_name}} {{path/to/file}} {{folder_name}}` + +- Upload a source directory to a Backblaze B2 bucket destination: + +`b2 sync {{path/to/source_file}} {{bucket_name}}` + +- Copy a file from one bucket to another bucket: + +`b2 copy-file-by-id {{path/to/source_file_id}} {{destination_bucket_name}} {{path/to/b2_file}}` + +- Show the files in your bucket: + +`b2 ls {{bucket_name}}` + +- Remove a "folder" or a set of files matching a pattern: + +`b2 rm {{path/to/folder|pattern}}` diff --git a/tldr/chezmoi b/tldr/chezmoi index bc4e562b..d23b3319 100644 --- a/tldr/chezmoi +++ b/tldr/chezmoi @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# Chezmoi +# chezmoi > A multi-machine dotfile manager, written in Go. > See also: `stow`, `tuckr`, `vcsh`, `homeshick`. diff --git a/tldr/consul-kv b/tldr/consul-kv index 7270d523..605f6df7 100644 --- a/tldr/consul-kv +++ b/tldr/consul-kv @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# consul-kv +# consul kv > Distributed key-value store with health checking and service discovery. > More information: . diff --git a/tldr/crane b/tldr/crane index 489def62..22c83e33 100644 --- a/tldr/crane +++ b/tldr/crane @@ -21,7 +21,7 @@ source: https://github.com/tldr-pages/tldr.git `crane --insecure {{subcommand}}` -- Specify the platform in the form os/arch{{/variant}}{{:osversion}} (e.g. linux/amd64). (default all): +- Specify the platform in the form `os/arch/variant:osversion` (e.g. `linux/amd64`). (default all): `crane --platform {{platform}} {{subcommand}}` diff --git a/tldr/crane-index-filter b/tldr/crane-index-filter index 14e69cb4..a2a192aa 100644 --- a/tldr/crane-index-filter +++ b/tldr/crane-index-filter @@ -12,7 +12,7 @@ source: https://github.com/tldr-pages/tldr.git `crane index filter` -- Specify the platform(s) to keep from base in the form os/arch{{/variant}}{{:osversion}}{{,}}: +- Specify the platform(s) to keep from base in the form `os/arch/variant:osversion,platform`: `crane index filter --platform {{platform1 platform2 ...}}` diff --git a/tldr/crane-mutate b/tldr/crane-mutate index 614c5139..d0a6b11f 100644 --- a/tldr/crane-mutate +++ b/tldr/crane-mutate @@ -21,7 +21,7 @@ source: https://github.com/tldr-pages/tldr.git `crane mutate {{[-o|--output]}} {{path/to/tarball}}` -- Repository in the form os/arch{{/variant}}{{:osversion}}{{,}} to push mutated image: +- Repository in the form `os/arch/variant:osversion,platform` to push mutated image: `crane mutate --set-platform {{platform_name}}` diff --git a/tldr/cs-complete-dep b/tldr/cs-complete-dep index 1201149b..26955478 100644 --- a/tldr/cs-complete-dep +++ b/tldr/cs-complete-dep @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# cs complete dep +# cs complete-dep > Search for libraries without doing it directly on the web. > More information: . diff --git a/tldr/elasticsearch-node b/tldr/elasticsearch-node new file mode 100644 index 00000000..e865d237 --- /dev/null +++ b/tldr/elasticsearch-node @@ -0,0 +1,33 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# elasticsearch-node + +> Manage low-level Elasticsearch node operations such as shutdown, repurpose, or viewing info. +> More information: . + +- Display information about the current node: + +`elasticsearch-node info` + +- Prepare the node for a full cluster restart (e.g., after upgrading): + +`elasticsearch-node unsafe-bootstrap` + +- Repurpose a node for a different role (e.g., from master to data node): + +`elasticsearch-node repurpose` + +- List the roles assigned to the node: + +`elasticsearch-node roles` + +- Show the installed JVM version, Elasticsearch home path, and other diagnostic information: + +`elasticsearch-node diagnostics` + +- Display help: + +`elasticsearch-node {{[-h|--help]}}` diff --git a/tldr/elasticsearch-users b/tldr/elasticsearch-users new file mode 100644 index 00000000..20e80054 --- /dev/null +++ b/tldr/elasticsearch-users @@ -0,0 +1,29 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# elasticsearch-users + +> Manage native realm users in Elasticsearch, including creating, updating, and deleting users. +> More information: . + +- Add a new user interactively (prompts for password): + +`elasticsearch-users useradd {{username}}` + +- Add a new user and specify roles: + +`elasticsearch-users useradd {{username}} -r {{role1,role2}}` + +- Change the password for an existing user: + +`elasticsearch-users passwd {{username}}` + +- Delete a user: + +`elasticsearch-users userdel {{username}}` + +- List all users in the native realm: + +`elasticsearch-users list` diff --git a/tldr/gammastep b/tldr/gammastep index 3fdd4329..04decbf1 100644 --- a/tldr/gammastep +++ b/tldr/gammastep @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# Gammastep +# gammastep > Adjust the screen's color temperature according to the time of day. > More information: . diff --git a/tldr/gcrane b/tldr/gcrane index 3cfbafae..4f6e764e 100644 --- a/tldr/gcrane +++ b/tldr/gcrane @@ -23,7 +23,7 @@ source: https://github.com/tldr-pages/tldr.git `gcrane --insecure {{subcommand}}` -- Specify the platform in the form os/arch{{/variant}}{{:osversion}} (e.g. linux/amd64). (default all): +- Specify the platform in the form `os/arch/variant:osversion` (e.g. `linux/amd64`). (default all): `gcrane --platform {{platform}} {{subcommand}}` diff --git a/tldr/git-grep b/tldr/git-grep index efcfad59..07b13c97 100644 --- a/tldr/git-grep +++ b/tldr/git-grep @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# git-grep +# git grep > Find strings inside files anywhere in a repository's history. > Accepts a lot of the same flags as regular `grep`. diff --git a/tldr/git-imerge b/tldr/git-imerge index 46e8d3c1..c8b67109 100644 --- a/tldr/git-imerge +++ b/tldr/git-imerge @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# git-imerge +# git imerge > Perform a merge or rebase between two Git branches incrementally. > Conflicts between branches are tracked down to pairs of individual commits, to simplify conflict resolution. @@ -31,4 +31,4 @@ source: https://github.com/tldr-pages/tldr.git - Abort imerge operation, and return to the previous branch: -`git-imerge remove && git checkout {{previous_branch}}` +`git imerge remove && git checkout {{previous_branch}}` diff --git a/tldr/git-maintenance b/tldr/git-maintenance index e7ee775b..38080998 100644 --- a/tldr/git-maintenance +++ b/tldr/git-maintenance @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# git-maintenance +# git maintenance > Run tasks to optimize Git repository data. > More information: . diff --git a/tldr/ipython b/tldr/ipython index 5abd776c..f0e02850 100644 --- a/tldr/ipython +++ b/tldr/ipython @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# IPython +# ipython > A Python shell with automatic history, dynamic object introspection, easier configuration, command completion, access to the system shell and more. > More information: . diff --git a/tldr/kodi-send b/tldr/kodi-send new file mode 100644 index 00000000..508fc66b --- /dev/null +++ b/tldr/kodi-send @@ -0,0 +1,21 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# kodi-send + +> Send actions to Kodi. +> More information: . + +- Quit Kodi: + +`kodi-send {{[-a|--action]}} Quit` + +- Reboot the system: + +`kodi-send {{[-a|--action]}} Reboot` + +- Send an action to a remote host: + +`kodi-send --host {{192.168.0.1}} --port {{9777}} {{[-a|--action]}} {{Quit}}` diff --git a/tldr/linux/aide b/tldr/linux/aide index 85b67639..d9d55b1d 100644 --- a/tldr/linux/aide +++ b/tldr/linux/aide @@ -24,7 +24,7 @@ source: https://github.com/tldr-pages/tldr.git `sudo aide {{[-u|--update]}}` -- Define a config file to override the default {{./aide.conf}}: +- Define a config file to override the default `./aide.conf`: `sudo aide {{[-c|--config]}} {{path/to/config_file}}` diff --git a/tldr/linux/fprintd-verify b/tldr/linux/fprintd-verify index 1a6d7b62..e25b3eda 100644 --- a/tldr/linux/fprintd-verify +++ b/tldr/linux/fprintd-verify @@ -18,7 +18,7 @@ source: https://github.com/tldr-pages/tldr.git - Verify fingerprints for a specific user: -`fprint-verify {{username}}` +`fprintd-verify {{username}}` - Verify a specific fingerprint for a specific user: @@ -26,7 +26,7 @@ source: https://github.com/tldr-pages/tldr.git - Fail the process if a fingerprint doesn't match with ones stored in the database for the current user: -`fprint-verify --g-fatal-warnings` +`fprintd-verify --g-fatal-warnings` - Display help: diff --git a/tldr/linux/gnome-extensions b/tldr/linux/gnome-extensions index d5646cf8..42a31746 100644 --- a/tldr/linux/gnome-extensions +++ b/tldr/linux/gnome-extensions @@ -22,11 +22,11 @@ source: https://github.com/tldr-pages/tldr.git - Disable a specific extension: -`gnome-extension disable "{{extension_id}}"` +`gnome-extensions disable "{{extension_id}}"` - Uninstall a specific extension: -`gnome-extension uninstall "{{extension_id}}"` +`gnome-extensions uninstall "{{extension_id}}"` - Display help for a specific subcommand (like `list`): diff --git a/tldr/linux/lspci b/tldr/linux/lspci index bde8a5ee..c32a4cdf 100644 --- a/tldr/linux/lspci +++ b/tldr/linux/lspci @@ -27,3 +27,7 @@ source: https://github.com/tldr-pages/tldr.git - Dump info in a readable form: `lspci -vm` + +- Show PCI vendor and device codes alongside its name: + +`lspci -nn` diff --git a/tldr/linux/pct-clone b/tldr/linux/pct-clone index d09a3a89..d143738b 100644 --- a/tldr/linux/pct-clone +++ b/tldr/linux/pct-clone @@ -8,6 +8,10 @@ source: https://github.com/tldr-pages/tldr.git > Clone a container. > More information: . +- Clone a container: + +`pct clone {{template_id}} {{copy_id}}` + - Clone a container with a custom name: `pct clone {{template_id}} {{copy_id}} --hostname {{host_name}}` diff --git a/tldr/linux/pct-set b/tldr/linux/pct-set new file mode 100644 index 00000000..b6fdab3f --- /dev/null +++ b/tldr/linux/pct-set @@ -0,0 +1,21 @@ +--- +syntax: markdown +tags: [tldr, linux] +source: https://github.com/tldr-pages/tldr.git +--- +# pct set + +> Set container options. +> More information: . + +- Set container to start automatically on boot: + +`pct set {{100}} --onboot` + +- Set a container to have a static IP: + +`pct set {{100}} --net0 name=eth0,bridge=vmbr0,ip={{10.0.0.100/24}},gw={{10.0.0.1}}` + +- Set container memory limit: + +`pct set {{100}} --memory {{8192}}` diff --git a/tldr/linux/snap b/tldr/linux/snap index 71298cfd..7e626024 100644 --- a/tldr/linux/snap +++ b/tldr/linux/snap @@ -5,38 +5,12 @@ source: https://github.com/tldr-pages/tldr.git --- # snap -> Manage the "snap" self-contained software packages. -> Similar to what `apt` is for `.deb`. -> More information: . +> `snap` can refer to multiple commands with the same name. -- Search for a package: +- View documentation for the packaging solution: -`snap find {{query}}` +`tldr snap.pkg` -- Install a package: +- View documentation for the European Space Agency Earth observation data processing tool: -`snap install {{package}}` - -- Update a package: - -`snap refresh {{package}}` - -- Update a package to another channel (track, risk, or branch): - -`snap refresh {{package}} --channel={{channel}}` - -- Update all packages: - -`snap refresh` - -- Display basic information about installed snap software: - -`snap list` - -- Uninstall a package: - -`snap remove {{package}}` - -- Check for recent snap changes in the system: - -`snap changes` +`tldr snap.esa` diff --git a/tldr/linux/snap.esa b/tldr/linux/snap.esa new file mode 100644 index 00000000..24d2d9cf --- /dev/null +++ b/tldr/linux/snap.esa @@ -0,0 +1,17 @@ +--- +syntax: markdown +tags: [tldr, linux] +source: https://github.com/tldr-pages/tldr.git +--- +# snap + +> Sentinel Application Platform (SNAP) for processing satellite data from the European Space Agency (ESA). +> More information: . + +- Display all updates: + +`snap --nosplash --nogui --modules --list --refresh` + +- Display help: + +`snap --help` diff --git a/tldr/linux/snap.pkg b/tldr/linux/snap.pkg new file mode 100644 index 00000000..71298cfd --- /dev/null +++ b/tldr/linux/snap.pkg @@ -0,0 +1,42 @@ +--- +syntax: markdown +tags: [tldr, linux] +source: https://github.com/tldr-pages/tldr.git +--- +# snap + +> Manage the "snap" self-contained software packages. +> Similar to what `apt` is for `.deb`. +> More information: . + +- Search for a package: + +`snap find {{query}}` + +- Install a package: + +`snap install {{package}}` + +- Update a package: + +`snap refresh {{package}}` + +- Update a package to another channel (track, risk, or branch): + +`snap refresh {{package}} --channel={{channel}}` + +- Update all packages: + +`snap refresh` + +- Display basic information about installed snap software: + +`snap list` + +- Uninstall a package: + +`snap remove {{package}}` + +- Check for recent snap changes in the system: + +`snap changes` diff --git a/tldr/osx/autoraise b/tldr/osx/autoraise index 3df8212c..d454c0c7 100644 --- a/tldr/osx/autoraise +++ b/tldr/osx/autoraise @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, osx] source: https://github.com/tldr-pages/tldr.git --- -# AutoRaise +# autoraise > Automatically raise and/or focus a window when hovering over it with the mouse. > More information: . diff --git a/tldr/osx/bnepd b/tldr/osx/bnepd index bca8a570..ab81ca0f 100644 --- a/tldr/osx/bnepd +++ b/tldr/osx/bnepd @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > A service that handles all Bluetooth network connections. > It should not be invoked manually. -> More information: . +> More information: . - Start the daemon: diff --git a/tldr/osx/emond b/tldr/osx/emond index 4327fd2f..f0386b55 100644 --- a/tldr/osx/emond +++ b/tldr/osx/emond @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Event Monitor service that accepts events from various services, runs them through a simple rules engine, and takes action. > The actions can run commands, send email, or SMS messages. -> More information: . +> More information: . - Start the daemon: diff --git a/tldr/osx/shuf b/tldr/osx/shuf index bd5c7170..3f253312 100644 --- a/tldr/osx/shuf +++ b/tldr/osx/shuf @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # shuf > Generate random permutations. -> More information: . +> More information: . - Randomize the order of lines in a file and output the result: diff --git a/tldr/osx/webinspectord b/tldr/osx/webinspectord index f065e70c..1d8c20a9 100644 --- a/tldr/osx/webinspectord +++ b/tldr/osx/webinspectord @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Relays commands between Web Inspector and remote targets like WKWebView. > It should not be invoked manually. -> More information: . +> More information: . - Start the daemon: diff --git a/tldr/osx/wps b/tldr/osx/wps index 8f0a4e95..979b7f74 100644 --- a/tldr/osx/wps +++ b/tldr/osx/wps @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Assists AirPort in connecting to a network using Wireless Protected Setup. > It should not be invoked manually. -> More information: . +> More information: . - Start the daemon: diff --git a/tldr/osx/wwand b/tldr/osx/wwand index 7c90ecdb..4dd71bfb 100644 --- a/tldr/osx/wwand +++ b/tldr/osx/wwand @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > USB WWAN device configuration daemon. > It should not be invoked manually. -> More information: . +> More information: . - Start the daemon: diff --git a/tldr/osx/yaa b/tldr/osx/yaa index b7322b3c..e79c3a0c 100644 --- a/tldr/osx/yaa +++ b/tldr/osx/yaa @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # yaa > Create and manipulate YAA archives. -> More information: . +> More information: . - Create an archive from a directory: diff --git a/tldr/php-cs-fixer b/tldr/php-cs-fixer index 3ef0ad7f..10e3c5f8 100644 --- a/tldr/php-cs-fixer +++ b/tldr/php-cs-fixer @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# PHP-CS-Fixer +# php-cs-fixer > Automatic coding style fixer for PHP. > More information: . diff --git a/tldr/pint b/tldr/pint index cd94eef6..193c7504 100644 --- a/tldr/pint +++ b/tldr/pint @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# Pint +# pint > An opinionated PHP code style fixer based on PHP-CS-Fixer. > More information: . diff --git a/tldr/pyats b/tldr/pyats index 926f2398..75094885 100644 --- a/tldr/pyats +++ b/tldr/pyats @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# pyATS +# pyats > A vendor agnostic test automation framework by Cisco Systems, used for network and systems testing. > More information: . diff --git a/tldr/qownnotes b/tldr/qownnotes index 8ebd2f0f..b601e83a 100644 --- a/tldr/qownnotes +++ b/tldr/qownnotes @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# qownnotes +# QOwnNotes > Markdown note-taking application. > Optionally integrates with the note-taking applications of Nextcloud and ownCloud. diff --git a/tldr/sfdk-emulator b/tldr/sfdk-emulator index 8baebf72..3d700369 100644 --- a/tldr/sfdk-emulator +++ b/tldr/sfdk-emulator @@ -27,3 +27,15 @@ source: https://github.com/tldr-pages/tldr.git - Run an interactive shell on an emulator: `sfdk emulator exec {{emulator}}` + +- Execute a command on an emulator: + +`sfdk emulator exec {{emulator}} {{command}}` + +- Set a property: + +`sfdk emulator set {{name}} {{property}}={{value}}` + +- Show emulator properties: + +`sfdk emulator show {{name}}` diff --git a/tldr/stormlock b/tldr/stormlock index 8ab5e841..caa4275d 100644 --- a/tldr/stormlock +++ b/tldr/stormlock @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# Stormlock +# stormlock > Centralized locking system. > More information: . diff --git a/tldr/vboxmanage-clonevm b/tldr/vboxmanage-clonevm index c59057df..033e1222 100644 --- a/tldr/vboxmanage-clonevm +++ b/tldr/vboxmanage-clonevm @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# vboxmanage-clonevm +# VBoxManage clonevm > Create a clone of an existing virtual machine (VM). > More information: . diff --git a/tldr/vboxmanage-cloud b/tldr/vboxmanage-cloud index 3878052d..b1e986a6 100644 --- a/tldr/vboxmanage-cloud +++ b/tldr/vboxmanage-cloud @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# vboxmanage-cloud +# VBoxManage cloud > VirtualBox command-line interface for managing cloud instances and images. > More information: . diff --git a/tldr/vboxmanage-controlvm b/tldr/vboxmanage-controlvm index 675c09f4..25b83a36 100644 --- a/tldr/vboxmanage-controlvm +++ b/tldr/vboxmanage-controlvm @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# vboxmanage-controlvm +# VBoxManage controlvm > Change the state and the settings of a currently running virtual machine. > More information: . diff --git a/tldr/vboxmanage-createvm b/tldr/vboxmanage-createvm index 7bf3bd19..87bf9721 100644 --- a/tldr/vboxmanage-createvm +++ b/tldr/vboxmanage-createvm @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# vboxmanage-createvm +# VBoxManage createvm > Create a new virtual machine. > More information: . diff --git a/tldr/vboxmanage-export b/tldr/vboxmanage-export index 87977b46..885b5051 100644 --- a/tldr/vboxmanage-export +++ b/tldr/vboxmanage-export @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# vboxmanage-export +# VBoxManage export > Export virtual machines to a virtual appliance (ISO) or a cloud service. > More information: . diff --git a/tldr/vboxmanage-extpack b/tldr/vboxmanage-extpack index 6631af2b..6bf052af 100644 --- a/tldr/vboxmanage-extpack +++ b/tldr/vboxmanage-extpack @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# vboxmanage-extpack +# VBoxManage extpack > Manage extension packs for Oracle VirtualBox. > More information: . diff --git a/tldr/vboxmanage-import b/tldr/vboxmanage-import index d67c613d..21bad0f3 100644 --- a/tldr/vboxmanage-import +++ b/tldr/vboxmanage-import @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# vboxmanage-import +# VBoxManage import > Import a previously exported virtual machine (VM). > More information: . diff --git a/tldr/vboxmanage-list b/tldr/vboxmanage-list index 0867a2ec..6518b9f1 100644 --- a/tldr/vboxmanage-list +++ b/tldr/vboxmanage-list @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# vboxmanage-list +# VBoxManage list > List information about the Oracle VM VirtualBox software and associated service. > More information: . diff --git a/tldr/vboxmanage-movevm b/tldr/vboxmanage-movevm index 35c2cfc3..9e7ec96f 100644 --- a/tldr/vboxmanage-movevm +++ b/tldr/vboxmanage-movevm @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# vboxmanage movevm +# VBoxManage movevm > Move a virtual machine (VM) to a new location on the host system. > More information: . diff --git a/tldr/vboxmanage-registervm b/tldr/vboxmanage-registervm index 02420833..201c412e 100644 --- a/tldr/vboxmanage-registervm +++ b/tldr/vboxmanage-registervm @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# vboxmanage-registervm +# VBoxManage registervm > Register a virtual machine (VM). > More information: . diff --git a/tldr/vboxmanage-showvminfo b/tldr/vboxmanage-showvminfo index 244c5e16..854a0573 100644 --- a/tldr/vboxmanage-showvminfo +++ b/tldr/vboxmanage-showvminfo @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# vboxmanage-showvminfo +# VBoxManage showvminfo > Show information about registered virtual machine. > More information: . diff --git a/tldr/vboxmanage-startvm b/tldr/vboxmanage-startvm index ebc3253a..90cc1f31 100644 --- a/tldr/vboxmanage-startvm +++ b/tldr/vboxmanage-startvm @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# vboxmanage-startvm +# VBoxManage startvm > Start a virtual machine. > More information: . diff --git a/tldr/vboxmanage-unregistervm b/tldr/vboxmanage-unregistervm index b3b30cf6..86067f29 100644 --- a/tldr/vboxmanage-unregistervm +++ b/tldr/vboxmanage-unregistervm @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# vboxmanage-unregistervm +# VBoxManage unregistervm > Unregister a virtual machine (VM). > More information: . diff --git a/tldr/virsh-connect b/tldr/virsh-connect index 2bcce27e..7a22f0fd 100644 --- a/tldr/virsh-connect +++ b/tldr/virsh-connect @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# virsh-connect +# virsh connect > Connect to a virtual machine hypervisor. > See also: `virsh`. diff --git a/tldr/virsh-domblklist b/tldr/virsh-domblklist index b5dc2d42..cc659d82 100644 --- a/tldr/virsh-domblklist +++ b/tldr/virsh-domblklist @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# virsh-domblklist +# virsh domblklist > List information about block devices associated with a virtual machine. > See also: `virsh`. diff --git a/tldr/virsh-help b/tldr/virsh-help index 6739cde4..6a5ffaeb 100644 --- a/tldr/virsh-help +++ b/tldr/virsh-help @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# virsh-help +# virsh help > Display information about `virsh` commands or command groups. > See also: `virsh`. diff --git a/tldr/virsh-list b/tldr/virsh-list index f0bc393e..a6b51f82 100644 --- a/tldr/virsh-list +++ b/tldr/virsh-list @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# virsh-list +# virsh list > List the ID, name, and state of virtual machines. > See also: `virsh`. diff --git a/tldr/windows/choco-push b/tldr/windows/choco-push index 8738d1c0..46cf03b2 100644 --- a/tldr/windows/choco-push +++ b/tldr/windows/choco-push @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, windows] source: https://github.com/tldr-pages/tldr.git --- -# choco-push +# choco push > Push a compiled NuGet package (`nupkg`) to a package feed. > More information: . diff --git a/tldr/yadm-alt b/tldr/yadm-alt index 5dd430b0..80bf7575 100755 --- a/tldr/yadm-alt +++ b/tldr/yadm-alt @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# yadm-alt +# yadm alt > Create symbolic links and process templates for any managed files. > Learn more about templates: . diff --git a/tldr/yadm-bootstrap b/tldr/yadm-bootstrap index 10b3537d..f5b64e78 100755 --- a/tldr/yadm-bootstrap +++ b/tldr/yadm-bootstrap @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# yadm-bootstrap +# yadm bootstrap > Execute Yadm's bootstrap file. > This file should be created in `$HOME/.config/yadm/bootstrap`. diff --git a/tldr/yadm-clone b/tldr/yadm-clone index 4fd0dc22..b9b10234 100755 --- a/tldr/yadm-clone +++ b/tldr/yadm-clone @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# yadm-clone +# yadm clone > Works just like `git clone`. In addition you can pass extra flags to configure your repository. > If there is a bootstrap file in the repository, you will be prompted to execute it. diff --git a/tldr/yadm-config b/tldr/yadm-config index 93e652cf..e2afa428 100755 --- a/tldr/yadm-config +++ b/tldr/yadm-config @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# yadm-config +# yadm config > Pass options to `yadm`'s config file. Change the `.config` of the repository managed by `yadm`. > More information: . diff --git a/tldr/yadm-decrypt b/tldr/yadm-decrypt index 69e9a2d7..28e68434 100755 --- a/tldr/yadm-decrypt +++ b/tldr/yadm-decrypt @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# yadm-decrypt +# yadm decrypt > Decrypt files that were encrypted by `yadm`. > When activating this command you will be prompted for a password. diff --git a/tldr/yadm-encrypt b/tldr/yadm-encrypt index 8395756e..116c104b 100755 --- a/tldr/yadm-encrypt +++ b/tldr/yadm-encrypt @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# yadm-encrypt +# yadm encrypt > Encrypt files listed in the designated encrypt file. > After the files are encrypted they will be save in the designated archive folder. diff --git a/tldr/yadm-enter b/tldr/yadm-enter index b6183065..79e3d9f6 100755 --- a/tldr/yadm-enter +++ b/tldr/yadm-enter @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# yadm-enter +# yadm enter > Run a sub-shell with all Git variables set. This sub-shell can be used to easily interact with the local `yadm` repository using Git commands. > This could be useful if you are using a tool which uses Git directly. diff --git a/tldr/yadm-gitconfig b/tldr/yadm-gitconfig index ee751dc1..dbf56ca5 100755 --- a/tldr/yadm-gitconfig +++ b/tldr/yadm-gitconfig @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# yadm-gitconfig +# yadm gitconfig > Pass options to `git config`. Change the `.gitconfig` of the repository managed by `yadm`. > See also: `git config`. diff --git a/tldr/yadm-init b/tldr/yadm-init index 682fea15..a0e4481c 100755 --- a/tldr/yadm-init +++ b/tldr/yadm-init @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# yadm-init +# yadm init > Initialize a new, empty repository for tracking dotfiles. > The repository is stored in `$HOME/.local/share/yadm/repo.git`. diff --git a/tldr/yadm-introspect b/tldr/yadm-introspect index bc00af21..9946c942 100755 --- a/tldr/yadm-introspect +++ b/tldr/yadm-introspect @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# yadm-introspect +# yadm introspect > Look at data that is managed by `yadm`. > The purpose of introspection is to support command line completion. diff --git a/tldr/yadm-list b/tldr/yadm-list index 03c2c2c0..a748c6ba 100755 --- a/tldr/yadm-list +++ b/tldr/yadm-list @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# yadm-list +# yadm list > Print a list of files managed by `yadm`. > More information: . diff --git a/tldr/yadm-perms b/tldr/yadm-perms index af1f81e8..4e4d25c0 100755 --- a/tldr/yadm-perms +++ b/tldr/yadm-perms @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# yadm-perms +# yadm perms > Update permissions. > It is usually unnecessary to run this command, as `yadm` automatically processes permissions by default. This automatic behavior can be disabled by setting the configuration `yadm.auto-perms` to `"false"`. diff --git a/tldr/yadm-transcrypt b/tldr/yadm-transcrypt index 56600ae1..7811515d 100755 --- a/tldr/yadm-transcrypt +++ b/tldr/yadm-transcrypt @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# yadm-transcrypt +# yadm transcrypt > If `transcrypt` is installed, this command allows you to pass options directly to `transcrypt`. > With the environment configured to use the yadm repository. diff --git a/tldr/yadm-upgrade b/tldr/yadm-upgrade index 60a446f1..f87841df 100755 --- a/tldr/yadm-upgrade +++ b/tldr/yadm-upgrade @@ -3,7 +3,7 @@ syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- -# yadm-upgrade +# yadm upgrade > Upgrade `yadm` to the latest version. > Upgrading will attempt to de-initialize and re-initialize your submodules.