当用find命令查找文件然后用xargs来批量处理文件时,当文件名中包含空格字符时,就会导致处理失败,因为xargs会认为空格前后分别是两个不同的文件。如下图:
    使用find和xargs命令组合处理带空格的文件名 - 图1

    我们查看find命令帮助文档可以发现,它有一个专门针对该情况并配合xargs命令的参数:-print0

    1. -print0
    2. True; print the full file name on the standard output, followed by a null character (instead of the newline character that -print uses). This allows file names that con
    3. tain newlines or other types of white space to be correctly interpreted by programs that process the find output. This option corresponds to the -0 option of xargs.

    find默认的-print参数相比,它输出的序列不是以空格分隔,而是以null字符分隔。而xargs也有一个参数-0,可以接受以null非空格间隔的输入流。

    所以,假如我们要找到当前目录下所有文件名以1).jpg结尾的文件并将它们全部删除掉时,就可以像下面这样操作:

    1. find . -name '*1).jpg' -print0 | xargs -0 rm -f

    使用find和xargs命令组合处理带空格的文件名 - 图2