mirror of
https://gitlab.com/CinnamonSlackBuilds/csb.git
synced 2024-12-28 09:58:11 +01:00
13 lines
253 B
Bash
13 lines
253 B
Bash
|
#!/bin/bash
|
||
|
# Simple script to check broken or missing libraries
|
||
|
# Willy Sudiarto Raharjo 2014
|
||
|
|
||
|
for L in `ls /usr/bin`; do
|
||
|
if [ -f /usr/bin/$L ]; then
|
||
|
ldd /usr/bin/$L | grep -i "not found"
|
||
|
if [ $? -eq 0 ]; then
|
||
|
echo $L;
|
||
|
fi
|
||
|
fi
|
||
|
done
|