以前 DOS 時代,安裝程式後,就會去找 .bat、.exe、.com...
在 Linux 要執行的主要是權限有沒有 x,所以安裝完成後,要怎麼找出可以執行的檔案呢?
Linux find 要找出可以執行的檔案
Linux 使用 find 找出可以執行的檔案有哪些,命令如下:
- find /path-dir -type f -executable
- find . -type f -perm /a+x # 找出任何有設定 x bit set 的檔案
- find . -type f -perm /u+x,o+x # 找出 user, other 有設定 x bit set 的檔案
- find . -perm /u+x # 找出 user 有設定 x bit set 的目錄或檔案