-4

I would like to see the Linux capabilities of running processes.

Matthias Braun
  • 32,039
  • 22
  • 142
  • 171
sini
  • 11
  • 4
    Please visit the How to Ask page – phil652 Apr 17 '15 at 16:13
  • 1
    Possible duplicate of [How to find out what linux capabilities a process requires to work?](https://stackoverflow.com/questions/35469038/how-to-find-out-what-linux-capabilities-a-process-requires-to-work) – tomix86 Dec 27 '17 at 12:18

1 Answers1

2
ps -ef |awk {'print $2'} | xargs getpcaps
Taryn
  • 242,637
  • 56
  • 362
  • 405