diff --git a/tldr/linux/paxs b/tldr/linux/paxs new file mode 100644 index 00000000..2672c100 --- /dev/null +++ b/tldr/linux/paxs @@ -0,0 +1,34 @@ +--- +syntax: markdown +tags: [tldr, linux] +source: https://github.com/tldr-pages/tldr.git +--- +# paxs + +> Manage packages across Yay, Flatpak, and Snap. +> Supports searching, installing, removing, and upgrading packages. +> More information: . + +- Search for a package: + +`paxs {{search_term}}` + +- Upgrade all packages: + +`paxs -u` + +- Install a package (prompting for the source): + +`paxs -i {{package}}` + +- Remove a package (prompting for the source): + +`paxs -r {{package}}` + +- Check for updates across all package managers: + +`paxs -c` + +- Display help: + +`paxs -h` diff --git a/tldr/ping b/tldr/ping index 3d65b203..5e088f7e 100644 --- a/tldr/ping +++ b/tldr/ping @@ -32,6 +32,6 @@ source: https://github.com/tldr-pages/tldr.git `ping -O {{host}}` -- Ping a host with specific number of pings, timeout (`-W`) for each reply, and total time limit (`-w`) of the entire ping run: +- Ping a host with specific number of pings, per-packet response timeout (`-W`), and total time limit (`-w`) of the entire ping run: `ping -c {{count}} -W {{seconds}} -w {{seconds}} {{host}}` diff --git a/tldr/pulumi-env b/tldr/pulumi-env new file mode 100644 index 00000000..d82ddd9d --- /dev/null +++ b/tldr/pulumi-env @@ -0,0 +1,37 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pulumi env + +> Manage Pulumi environments. +> More information: . + +- List all environments: + +`pulumi env ls` + +- Create an environment: + +`pulumi env init {{environment_name}}` + +- Set a value in an environment: + +`pulumi env set {{environment_name}} {{key}} {{value}}` + +- Edit an environment definition: + +`pulumi env edit {{environment_name}}` + +- Delete a value from an environment: + +`pulumi env rm {{environment_name}} {{key}}` + +- Delete an environment entirely: + +`pulumi env rm {{environment_name}}` + +- Display help: + +`pulumi env --help`