1
find /home -iname ".htaccess" -exec grep -l "FollowSymLinks" {} \;

我是否将 SED 添加到 -exec 中,以便可以查找和替换:

 +FollowSymLinks to +SymLinksIfOwnerMatch
4

1 回答 1

2

你可以做:

find /home -iname ".htaccess" -exec sed -i "s/FollowSymLinks/SymLinksIfOwnerMatch/g" {} \;
于 2012-11-24T00:45:11.073 回答