mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
34 lines
699 B
Plaintext
34 lines
699 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# pacconf
|
|
|
|
> Query and display pacman's configuration options, showing either the full configuration or specific directive values as parsed by pacman.
|
|
> More information: <https://github.com/andrewgregory/pacutils/blob/master/doc/pacconf.pod>.
|
|
|
|
- Show full parsed pacman configuration:
|
|
|
|
`pacconf`
|
|
|
|
- List configured repositories:
|
|
|
|
`pacconf --repo-list`
|
|
|
|
- Always show directive names even if only one directive is provided:
|
|
|
|
`pacconf --verbose {{directive}}`
|
|
|
|
- Display only first value of multi-value options:
|
|
|
|
`pacconf --single`
|
|
|
|
- Display help:
|
|
|
|
`pacconf --help`
|
|
|
|
- Display version:
|
|
|
|
`pacconf --version`
|