Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
标题说明了一切。我想获取给定文件夹(和子文件夹)中的所有 php 文件,然后在 Dreamweaver 中打开所有这些文件。
我觉得我需要使用 find 命令并打开和循环它。抱歉,还在学习linux命令
您可以在 Mac 或 Linux 中执行此操作
find . -type f -name "*.php" -exec PATH_TO_APP {} +