Closed jmhodges closed 1 month ago
Unclear how these ended up as executable. Found some when Se Yeon was poking around and ran some find commands to find the rest.
find
The macos (BSD) find doesn't have -executable, so we use the weird perm flag.
-executable
perm
$ find . -name "*.go" -type f -perm '+111' | xargs chmod -x $ find . -name "*.yaml" -type f -perm '+111' | xargs chmod -x $ find . -name "*.sql" -type f -perm '+111' | xargs chmod -x
Unclear how these ended up as executable. Found some when Se Yeon was poking around and ran some
find
commands to find the rest.The macos (BSD)
find
doesn't have-executable
, so we use the weirdperm
flag.