find コマンドでパーミッションが実行のものを取り出す。 find $path -type f -executable 実行可能なファイルを探すときに便利。 コマンドとして実行可能なファイルや、+x として executable の権限を付与されたファイルを探すのに便利。 他の解法 find -perm 755 permission をそのものを調べる方法もあり。 perm をつければ権限を調べられる。 関連資料 すぐわかるfindコマンドの使い方 - それマグで! 参考資料 https://superuser.com/questions/38981/how-can-i-find-only-the-executable-files-under-a-certain-directory-in-linux