1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 23:17:58 +01:00
tldr/pages/linux/getcap.md
2022-10-03 09:01:45 -03:00

16 lines
470 B
Markdown

# getcap
> Command to display the name and capabilities of each specified file.
> More information: <https://manned.org/getcap>.
- Get capabilities for the given files:
`getcap {{path/to/file1 path/to/file2 ...}}`
- Get capabilities for all the files recursively under the given directories:
`getcap -r {{path/to/directory1 path/to/directory2 ...}}`
- Displays all searched entries even if no capabilities are set:
`getcap -v {{path/to/file1 path/to/file2 ...}}`