Remove test script.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackware-id.org>
This commit is contained in:
Willy Sudiarto Raharjo 2017-04-21 01:49:02 +07:00
parent f556ec1f4d
commit 2a4b4be60a
No known key found for this signature in database
GPG key ID: 887B8374D7333381

View file

@ -1,12 +0,0 @@
#!/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