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.
您能否在 perl 或 shell 中提供一个脚本来搜索并将字符串“windows”替换为“android”,仅在某些特定文件夹中,并且字符串应该只在文件中替换,而不是在文件夹名称中替换?
find . -type f|xargs perl -pi -e 's/windows/android/g'
-type f -this 只会找到文件而不是目录。
管道后的剩余部分将在 teh find 命令返回的所有文件中搜索并用 android 替换 windows