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 | {{{ |
| 31 | find -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 | {{{ |
| 35 | find -regex '.*[^-0-9a-zA-Z/._].*' | ~arsf/usr/bin/fix_naughty_chars.py |
| 36 | }}} |
| 37 | This will give suggested commands, but check first. |