alex Mon Oct 1 16:37:35 2001 EDT
Added files:
/r2/binarycloud/make FileAndDirList.sh
Log:
Adding a quick hack script for listing dirs and files.
Index: r2/binarycloud/make/FileAndDirList.sh
+++ r2/binarycloud/make/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
|