In Linux.
I know I can do find . -type f, but that includes binary file and I couldn't find a way to exclude them with find
feedback
|
|
or
Using
Using | |||
|
feedback
|
|
show all files without executable permissions (although this is not specifically binary, so it may not be exactly what you need):
| |||||
feedback
|
|
Another way would be to exclude all files which have execute permission set for either user, group or others:
(If binary equals execute permissions...) | |||
|
feedback
|