1for fn in *.py 2do 3 COUNT=`cat *.rst | grep --count ${fn}` 4 if [ $COUNT -lt 1 ] 5 then 6 echo ${fn} 7 fi 8done 9 10