mirror of
https://github.com/systemd/systemd.git
synced 2026-07-14 03:20:22 +00:00
7 lines
194 B
Bash
Executable File
7 lines
194 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
$1 -dM -include linux/capability.h -include "$2" -include "$3" - </dev/null | \
|
|
awk '/^#define[ \t]+CAP_[A-Z_]+[ \t]+/ { print $2; }' | \
|
|
grep -v CAP_LAST_CAP
|