2021-03-08 19:02:50 +00:00
|
|
|
# pacman --files
|
|
|
|
|
|
|
|
> Arch Linux package manager utility.
|
2023-05-14 12:41:37 +01:00
|
|
|
> See also: `pacman`, `pkgfile`.
|
2021-03-08 19:02:50 +00:00
|
|
|
> More information: <https://man.archlinux.org/man/pacman.8>.
|
|
|
|
|
|
|
|
- Update the package database:
|
|
|
|
|
|
|
|
`sudo pacman --files --refresh`
|
|
|
|
|
|
|
|
- Find the package that owns a specific file:
|
|
|
|
|
|
|
|
`pacman --files {{filename}}`
|
|
|
|
|
|
|
|
- Find the package that owns a specific file, using a regular expression:
|
|
|
|
|
2021-05-10 10:03:12 +01:00
|
|
|
`pacman --files --regex '{{regular_expression}}'`
|
2021-03-08 19:02:50 +00:00
|
|
|
|
|
|
|
- List only the package names:
|
|
|
|
|
2021-04-19 19:04:21 +01:00
|
|
|
`pacman --files --quiet {{filename}}`
|
2021-03-08 19:02:50 +00:00
|
|
|
|
|
|
|
- List the files owned by a specific package:
|
|
|
|
|
2023-08-26 18:30:06 +01:00
|
|
|
`pacman --files --list {{package}}`
|
2021-03-08 19:02:50 +00:00
|
|
|
|
2022-10-17 15:39:25 +01:00
|
|
|
- Display help:
|
|
|
|
|
|
|
|
`pacman --files --help`
|