非常常见的一个 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 了.
Google+