source: people/munepi/scripts/check-texlive-binaries.sh @ 6264

Revision 6264, 219 bytes checked in by munepi, 12 years ago (diff)

added check-texlive-binaries.sh

  • Property svn:executable set to *
Line 
1#!/bin/bash
2
3for x in $(file $(rpm -ql texlive | grep /usr/bin) | grep ELF | cut -d":" -f 1 | sort); do
4    ldd $x | grep -q "=> not found"
5
6    if [ $? -eq 0 ]; then
7        echo $x
8        ldd $x | grep "=> not found"
9    fi
10done
Note: See TracBrowser for help on using the repository browser.