在包含数百万个文件的文件夹上,这可能需要相当长的时间:
chown someuser -Rf /folder_with_lots_of_files/
如果 99.9% 的文件已经属于 ,我怎样才能加快速度someuser
?
答案1
使用find
命令,例如:
find /folder_with_lots_of_files -not -user someuser -execdir chown someuser {} \+
在包含数百万个文件的文件夹上,这可能需要相当长的时间:
chown someuser -Rf /folder_with_lots_of_files/
如果 99.9% 的文件已经属于 ,我怎样才能加快速度someuser
?
使用find
命令,例如:
find /folder_with_lots_of_files -not -user someuser -execdir chown someuser {} \+