mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 11:22:09 +02:00

* 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>
617 B
617 B
pacman --files
Arch Linux package manager utility. See also:
pacman
,pkgfile
. 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:
pacman --files --regex '{{regular_expression}}'
- List only the package names:
pacman --files --quiet {{filename}}
- List the files owned by a specific package:
pacman --files --list {{package}}
- Display help:
pacman --files --help