1 2 3 4 5 6 7 8 9
#!/bin/bash if [ -z "$(/sbin/ldconfig -p | grep libtirpc)" ]; then echo "no files found" exit 1 else echo "There are files" exit 0 fi