Changes between Version 1 and Version 2 of Ticket #1002
- Timestamp:
- Nov 13, 2017, 11:06:44 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1002 – Description
v1 v2 6 6 7 7 It should be possible to write the `find` commands so that it ignore non-accessible files. 8 9 The first `find` command that is looking for directories could simply use the `-executable` filter to get rid of the permission issue. 10 11 The second `find` command that is looking for files we need to use something like: 12 13 `-type d ! -executable -prune , -type f -readable` 14 15 The first part (-type d ! -executable -prune) should exclude all directories that are not executable. The seconds part will then match all files that are readable.