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.
find /home -iname ".htaccess" -exec grep -l "FollowSymLinks" {} \;
SEDを-execに追加して、次の検索と置換を実行できるようにしますか?
+FollowSymLinks to +SymLinksIfOwnerMatch
できるよ:
find /home -iname ".htaccess" -exec sed -i "s/FollowSymLinks/SymLinksIfOwnerMatch/g" {} \;