Changes between Version 52 and Version 53 of Procedures/NEODCDelivery


Ignore:
Timestamp:
Aug 20, 2010, 5:08:05 PM (14 years ago)
Author:
knpa
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Procedures/NEODCDelivery

    v52 v53  
    2727   1. Scan the filesystem for any 'bad' things and fix them:
    2828    1. delete any unnecessary files - backups of DEMs that weren't used, temp files created by gedit (~ at end of filename), hidden files etc
    29     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 {} \;`
    30     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
     29    1. Remove executable bit on all files (except the point cloud filter and the run[aceh] scripts):
     30{{{
     31find -type f -not -wholename '*pt_cloud_filter*' -and -not -regex '.*/run[aceh]/.*sh' -and -perm /a=x -exec chmod a-x {} \;
     32}}}
     33    1. Find all files/dirs with unusual characters (space, brackets, etc):
     34{{{
     35find -regex '.*[^-0-9a-zA-Z/._].*' | ~arsf/usr/bin/fix_naughty_chars.py
     36}}}
     37       This will give suggested commands, but check first.
    3138    1. Give everyone read permissions (and execute if it has user execute) for the current directory and below - `chmod -R a+rX .`
    3239 1. Create an archive tarball for NEODC to download: