8 lines
228 B
Bash
Executable file
8 lines
228 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Author: Oliver Ladner <oli@lugh.ch>
|
|
# License: LGPL
|
|
#
|
|
# Shows all applications using libssl
|
|
# They need to be restarted after an OpenSSL upgrade
|
|
|
|
lsof | grep libssl | awk {'print $1"\t "$3'} | sort | uniq
|