The parameter list is too long

非常常见的一个 Unix/Linux 命令错误信息: The parameter list is too long.

$ find /backup/* -ctime 2
ksh: /usr/bin/find: 0403-027 The parameter list is too long.

find: 0403-027 The parameter list is too long 这个错误信息很让人迷惑: 难道该目录下文件太多了么? 其实不是的, 问题出在那个 “*” 上,Korn Shell 默认把 * 作为 Metadata 处理,进行了扩展,进而这条语句备错误的解析.我的操作平台是 AIX 5.3. 我不确定这是和这个平台的 Korn Shell 有关.
使用 ls / grep / find 等命令时侯因为通配符的使用, 一不小心就会遇到这样的错误.可以通过对对象添加引号来禁止扩展


另外有的时候, 使用 rm 命令的时候也可能遇到:

rm:0403-027 The parameter list is too long.

这个错误的根本原因是因为 /usr/include/limits.h 定义系统核心 LINE_BUFSZ 限制.如果有大量文件数需要删除,可以考虑用 xargs 的 -n 参数进行批量删除.参考如下示例:

find /backup/ -ctime 2 -print | xargs -n 10 rm {} \;

Google 新闻组上能找到大量的搜索结果:find: 0403-027 The parameter list is too long,看来应该好好看看 Shell FAQ 了.


3 thoughts on “The parameter list is too long

  1. songgang

    你好,在你的网站上看到那篇翻译肖申克的救赎的文章,因为想用这个文章,我想和原翻译者联系,你能告诉我是从哪里转来的吗?或者怎样能联系到翻译者?我的邮箱[email protected]谢谢

    Reply
  2. cekavu

    find命令本来就递归的查询给定目录下的所有子目录,不需要加个*,多此一举。

    Reply

Leave a Reply

Your email address will not be published. Required fields are marked *