通过绝对路径删除某文件外其他文件

 

命令;

以/etc/log为例

 

find /etc/log | grep  -v "保留.log" | xargs rm

 

 

 

你可能感兴趣的:(linux,shell)