diff --git a/tldr/bpkg b/tldr/bpkg new file mode 100644 index 00000000..65f1462d --- /dev/null +++ b/tldr/bpkg @@ -0,0 +1,33 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# bpkg + +> A package manager for Bash scripts. +> More information: . + +- Update the local index: + +`bpkg update` + +- Install a package globally: + +`bpkg install --global {{package}}` + +- Install a package in a subdirectory of the current directory: + +`bpkg install {{package}}` + +- Install a specific version of a package globally: + +`bpkg install {{package}}@{{version}} -g` + +- Show details about a specific package: + +`bpkg show {{package}}` + +- Run a command, optionally specifying its arguments: + +`bpkg run {{command}} {{argument1 argument2 ...}}` diff --git a/tldr/linux/waypipe b/tldr/linux/waypipe new file mode 100644 index 00000000..8958e7f1 --- /dev/null +++ b/tldr/linux/waypipe @@ -0,0 +1,17 @@ +--- +syntax: markdown +tags: [tldr, linux] +source: https://github.com/tldr-pages/tldr.git +--- +# waypipe + +> Remotely run graphical applications under a Wayland compositor. +> More information: . + +- Run a graphical program remotely and display it locally: + +`waypipe ssh {{user}}@{{server}} {{program}}` + +- Open an SSH tunnel to run any program remotely and display it locally: + +`waypipe ssh {{user}}@{{server}}` diff --git a/tldr/traefik b/tldr/traefik index 26161dc8..2279f06a 100644 --- a/tldr/traefik +++ b/tldr/traefik @@ -8,15 +8,15 @@ source: https://github.com/tldr-pages/tldr.git > An HTTP reverse proxy and load balancer. > More information: . -- Start server with default config: +- Start the server with the default configuration: `traefik` -- Start server with a custom configuration file: +- Start the server with a custom configuration file: -`traefik --c {{config_file.toml}}` +`traefik --ConfigFile {{config_file.toml}}` -- Start server with cluster mode enabled: +- Start the server with cluster mode enabled: `traefik --cluster`