1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 12:02:08 +02:00
tldr/pages/linux/pkgfile.md
K.B.Dharun Krishna 2135714193
pages/*, style-guide: update contents, fix Markdown (#10492)
* pages/*, style-guide: update pages, fix Markdown (commit 1)

* Update pages

* style-guide.de: update page

* Apply suggestions from code review

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>

* Apply suggestions from code review

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>

* pip3: remove search command

* rpm: update path placeholder

Co-authored-by: pixel <pixel+github@chrissx.de>

* Update pages/linux/pkgfile.md

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>

---------

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
Co-authored-by: pixel <pixel+github@chrissx.de>
2023-08-26 23:00:06 +05:30

37 lines
1 KiB
Markdown

# pkgfile
> Tool for searching files from packages in the official repositories on arch-based systems.
> See also `pacman files`, describing the usage of `pacman --files`.
> More information: <https://man.archlinux.org/man/extra/pkgfile/pkgfile.1>.
- 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}}`