The script uses zsh, and lists regular files that have the 'executable' permission. At the same time, I fix the permissions of several files.
6 lines
93 B
Bash
Executable File
6 lines
93 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
setopt extendedglob
|
|
|
|
ls -1 ^(build*|Scripts)/**/(#i)*.^(py|sh|run|sh|csh|pl)(.x)
|