diff --git a/tldr/linux/apparmor_status b/tldr/linux/apparmor_status new file mode 100644 index 00000000..1162d57b --- /dev/null +++ b/tldr/linux/apparmor_status @@ -0,0 +1,12 @@ +--- +syntax: markdown +tags: [tldr, linux] +source: https://github.com/tldr-pages/tldr.git +--- +# apparmor_status + +> This command is an alias of `aa-status`. + +- View documentation for the original command: + +`tldr aa-status` diff --git a/tldr/linux/dpkg b/tldr/linux/dpkg index 20a4c557..ba6af6ee 100644 --- a/tldr/linux/dpkg +++ b/tldr/linux/dpkg @@ -33,3 +33,7 @@ source: https://github.com/tldr-pages/tldr.git - Find out which package owns a file: `dpkg -S {{path/to/file}}` + +- Purge an installed or already removed package, including configuration: + +`dpkg -P {{package}}` diff --git a/tldr/linux/faillock b/tldr/linux/faillock index 22e5931c..a180fff5 100644 --- a/tldr/linux/faillock +++ b/tldr/linux/faillock @@ -8,6 +8,14 @@ source: https://github.com/tldr-pages/tldr.git > Display and modify authentication failure record files. > More information: . +- List login failures of the current user: + +`faillock` + +- Reset the failure records of the current user: + +`faillock --reset` + - List login failures of all users: `sudo faillock` diff --git a/tldr/linux/pacstall b/tldr/linux/pacstall index 9404819e..beb337ee 100644 --- a/tldr/linux/pacstall +++ b/tldr/linux/pacstall @@ -34,7 +34,7 @@ source: https://github.com/tldr-pages/tldr.git - Display information about a package: -`pacstall --query-info {{package}}` +`pacstall --cache-info {{package}}` - List all installed packages: diff --git a/tldr/netstat b/tldr/netstat index 42831662..ecb5b69b 100644 --- a/tldr/netstat +++ b/tldr/netstat @@ -6,6 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # netstat > Display network-related information such as open connections, open socket ports, etc. +> See also: `ss`. > More information: . - List all ports: diff --git a/tldr/time b/tldr/time index 3cfd3abd..397ee8dd 100644 --- a/tldr/time +++ b/tldr/time @@ -13,6 +13,6 @@ source: https://github.com/tldr-pages/tldr.git `time {{command}}` -- Create a very simple stopwatch (only works in bash): +- Create a very simple stopwatch (only works in Bash): `time read` diff --git a/tldr/zapier-analytics b/tldr/zapier-analytics new file mode 100644 index 00000000..d607adef --- /dev/null +++ b/tldr/zapier-analytics @@ -0,0 +1,21 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# zapier analytics + +> Show the status of the analytics that are collected. It is also used to change what is collected. +> More information: . + +- Show the status of collected analytics: + +`zapier analytics` + +- Change how much information is collected: + +`zapier analytics {{-m|--mode}} {{enabled|anonymous|disabled}}` + +- Show extra debugging output: + +`zapier analytics {{-m|--mode}} {{enabled|anonymous|disabled}} {{-d|--debug}}` diff --git a/tldr/zapier-build b/tldr/zapier-build new file mode 100644 index 00000000..dd4deb38 --- /dev/null +++ b/tldr/zapier-build @@ -0,0 +1,21 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# zapier build + +> Build a pushable `zip` of a Zapier integration. +> More information: . + +- Create a build: + +`zapier build` + +- Disable smart file inclusion (will only include files required by `index.js`): + +`zapier build --disable-dependency-detection` + +- Show extra debugging output: + +`zapier build {{-d|--debug}}` diff --git a/tldr/zapier-scaffold b/tldr/zapier-scaffold new file mode 100644 index 00000000..a9b9a1cb --- /dev/null +++ b/tldr/zapier-scaffold @@ -0,0 +1,29 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# zapier scaffold + +> Add a starting trigger, create, search, or resource to an integration. +> More information: . + +- Scaffold a new trigger, create, search, or resource: + +`zapier scaffold {{trigger|search|create|resource}} {{noun}}` + +- Specify a custom destination directory for the scaffolded files: + +`zapier scaffold {{trigger|search|create|resource}} {{noun}} {{-d|--dest}}={{path/to/directory}}` + +- Overwrite existing files when scaffolding: + +`zapier scaffold {{trigger|search|create|resource}} {{noun}} {{-f|--force}}` + +- Exclude comments from the scaffolded files: + +`zapier scaffold {{trigger|search|create|resource}} {{noun}} --no-help` + +- Show extra debugging output: + +`zapier scaffold {{-d|--debug}}`