Changes between Version 29 and Version 30 of Procedures/NEODCDelivery
- Timestamp:
- Apr 28, 2010, 10:54:10 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Procedures/NEODCDelivery
v29 v30 21 21 1. Scan the filesystem for any 'bad' things and fix them: 22 22 1. delete any unnecessary files - backups of DEMs that weren't used, temp files created by gedit (~ at end of filename), etc 23 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 {} \;`23 1. Remove executable bit on all files (except the point cloud filter and the run[aceh] scripts) -> `find -type f -not -wholename '*pt_cloud_filter*' -and -not -regex '.*/run[aceh]/.*sh' -and -perm /a=x -exec chmod a-x {} \;` 24 24 1. Find all files/dirs with unusual characters (space, brackets, etc) - use `find -regex '.*[^-0-9a-zA-Z/._].*' | ~arsf/usr/bin/fix_naughty_chars.py` to give suggested commands, but check first 25 25 1. Give everyone read permissions (and execute if it has user execute) for the current directory and below - `chmod -R a+rX .`