Commit 23ffd056 authored by Tres Seaver's avatar Tres Seaver

Temporary script for checking dependencies on zope.app.*

parent 0bea992a
#! /bin/bash
python=$(find src/ -name "*.py" | xargs grep -l "zope\.app")
zcml=$(find src/ -name "*.zcml" | xargs grep -l "zope\.app")
doctest=$(find src/ -name "*.txt" | grep -v "egg-info" |
xargs grep -l "zope\.app")
for f in $python $zcml $doctest; do
echo ====================================================
echo $f
echo ====================================================
grep "zope\.app" $f
done
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment