Argument list too long error for rm, cp, mv commands

前端 未结 27 2811
长情又很酷
长情又很酷 2020-11-22 04:50

I have several hundred PDFs under a directory in UNIX. The names of the PDFs are really long (approx. 60 chars).

When I try to delete all PDFs together using the fol

27条回答
  •  无人共我
    2020-11-22 05:24

    Another answer is to force xargs to process the commands in batches. For instance to delete the files 100 at a time, cd into the directory and run this:

    echo *.pdf | xargs -n 100 rm

提交回复
热议问题