1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/pkgfile.md
Sebastiaan Speck b584e4682c
pkgfile: fix more info link (#14122)
Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>
2024-10-11 16:33:45 +02:00

37 lines
987 B
Markdown

# pkgfile
> Search files from packages in the official repositories on Arch-based systems.
> See also: `pacman files`, describing the usage of `pacman --files`.
> More information: <https://manned.org/pkgfile>.
- Synchronize the pkgfile database:
`sudo pkgfile --update`
- Search for a package that owns a specific file:
`pkgfile {{filename}}`
- List all files provided by a package:
`pkgfile --list {{package}}`
- List executables provided by a package:
`pkgfile --list --binaries {{package}}`
- Search for a package that owns a specific file using case-insensitive matching:
`pkgfile --ignorecase {{filename}}`
- Search for a package that owns a specific file in the `bin` or `sbin` directory:
`pkgfile --binaries {{filename}}`
- Search for a package that owns a specific file, displaying the package version:
`pkgfile --verbose {{filename}}`
- Search for a package that owns a specific file in a specific repository:
`pkgfile --repo {{repository_name}} {{filename}}`