6 lines
173 B
Bash
6 lines
173 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
#
|
||
|
|
# Shows all applications using libssl
|
||
|
|
# They need to be restarted after an OpenSSL upgrade
|
||
|
|
|
||
|
|
lsof | grep libssl | awk {'print $1"\t "$3'} | sort | uniq
|