alex Thu Oct 4 18:12:38 2001 EDT
Added files:
/r2/tools/scripts FileAndDirList.sh
Log:
Minor script
Index: r2/tools/scripts/FileAndDirList.sh
+++ r2/tools/scripts/FileAndDirList.sh
find ../ -type f \
| grep -ve 'CVS' \
| grep -ve './docs/' \
| grep -ve './make/' \
| grep -ve './ext/' \
| grep -ve './build/' \
| grep -ve 'Makefile' \
| grep -ve 'Makefile.in' \
| grep -ve '.cvsignore' \
> ./FileList.php
find ../ -type d \
| grep -ve 'CVS' \
| grep -ve './make/' \
| grep -ve './docs/' \
| grep -ve './ext/' \
| grep -ve './build/' \
> ./DirList.php
|