从find linux中排除一个目录
这个问题在这里已经有了答案:
与-prune
find . -name directory_to_exclude -prune -o ...
排除许多目录
find . ( -name dir1_to_exclude -o -name dir2 ... ) -prune -o ...
链接地址: http://www.djcxy.com/p/78121.html
这个问题在这里已经有了答案:
与-prune
find . -name directory_to_exclude -prune -o ...
排除许多目录
find . ( -name dir1_to_exclude -o -name dir2 ... ) -prune -o ...
链接地址: http://www.djcxy.com/p/78121.html