find 可执行

for i in `find -type f`; do [ -x $i ] && echo "$i is executable"; done
原文地址:https://www.cnblogs.com/dream397/p/15500575.html