Files
annotate/src/dev_config

15 lines
158 B
Plaintext
Raw Normal View History

#!/bin/csh -f
set cfg = `find . -type d -name config -print | grep -v ncbi`
foreach cf ($cfg)
echo $cf
\rm -r $cf
cp -r ../config $cf
end
exit 0