example
-rwxr--r-- 1 me users 0 May 27 13:58 file_0
-rw-rwxrw- 1 me users 0 May 27 13:58 file_1
-rw-rw-rwx 1 me users 0 May 27 13:59 file_2
-rwxrwxrwx 1 me users 0 May 27 14:02 file_3
I would need to list all 4 files in the current dir
- AIX
- non-gnu 'find', so "find . -executable" won't work
worked for me. any other solutions?
From
find(1)
:Not specified in SUSv3, but portable across *BSD and Linux at least (I haven't tested others).
Well, if you like Rube Goldberg devices, you could use:
Though this only lists the current directory.