Files
annotate/src/dev_config
T

15 lines
158 B
Tcsh
Raw Normal View History

2015-10-02 21:12:35 +02:00
#!/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