Changes between Version 4 and Version 5 of Procedures/NEODCDelivery
- Timestamp:
- May 9, 2008, 11:55:39 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Procedures/NEODCDelivery
v4 v5 14 14 1. Any additional information that'll help explain unusual files/dirs 15 15 1. Scan the filesystem for any 'bad' things and fix them: 16 1. delete any unnecessary files - backups of DEMs that weren't used, temp files created by gedit (~ at end of filename), etc 16 17 1. Remove executable bit on all files (except bin/az* and the run[aceh] scripts) -> `find -type f -not -wholename *bin/az* -and -not -regex '.*/run[aceh]/.*sh' -and -perm /a=x -exec chmod a-x {} \;` 17 18 1. Find all files/dirs with unusual characters (space, brackets, etc) - these need a manual rename at present -> `find -regex '.*[^-0-9a-zA-Z/._].*'`