ChinaUnix.net
相关文章推荐:

bash binrm Argument list too long

[root@localhost tmp]# ls dos* -bash: /bin/ls: argument list too long [root@localhost tmp]# uname -a Linux localhost.localdomain 2.6.9-42.ELsmp #1 SMP Tue Aug 15 10:35:26 BST 2006 x86_64 x86_64 x86_64 GNU/Linux [root@localhost tmp]# :em21: 会是什么原因呢?

by flowingtree - Shell - 2008-07-25 16:04:41 阅读(2237) 回复(13)

相关讨论

-bash: /bin/rm: argument list too long

by netkiller - Linux论坛 - 2004-02-09 20:33:53 阅读(735) 回复(7)

我拷贝文件的时候出现argument list too long linux 信息,我怎么办?

by 恋家的老鼠 - Linux论坛 - 2005-04-15 14:39:29 阅读(402) 回复(6)

删除所在的目录所有文件的时候提示 bash: bin/rm argument list too long 。 那我怎么删除呢?我很菜,拜托给出具体命令。

by citycool - Shell - 2006-03-05 05:01:34 阅读(1144) 回复(2)

如果我想用ftp从一个服务器上的一个目录下的所有没有规则的文件(超过6000个),请问我该怎么办? 如果我用 ftp -n 192.168.5.3<argument list too long.系统为rhas2.1,请问我该怎么解决,注意,我要down的目标服务器也是英文的字符模式(此wu-ftp不支持汉字匹配)。

by jackylau - Shell - 2005-07-14 09:21:47 阅读(947) 回复(1)

[code]find . -name '*.php' >allphpfiles.txt grep "abcc" `cat allphpfiles.txt` > includeabccfile -bash: /bin/grep: argument list too long [/code] 其中allphpfiles.txt的内容是我要查找的所有的文件 怎么才能让突破grep查询文件数的限制呢?? 我的是REDHAT AS3的系统 我想实现在我系统中所有包括"abcc"字符的文件php文件 如果用 [code]grep "abcc" * -R [/code]太慢了 谢谢

by rhinux - Shell - 2005-06-09 21:25:05 阅读(2391) 回复(6)

[cclog@localhost tmp]$ sort -m -k1 -n *_1003_20040909.* -o b.txt -bash: /bin/sort: argument list too long 。。。。 ls mv cp 等等可以使用find -exec ,sort 这个就不知道咋搞了

by Archie.Chen - Shell - 2004-10-14 10:24:18 阅读(640) 回复(1)

cp: argument list too long 主要原因是我目录里有上万个文件。怎么办。

by x叶大马猴 - BSD - 2004-05-22 05:31:30 阅读(1041) 回复(5)

在aix主机执行ls *LZ_9_890* sh: /usr/bin/ls: 0403-027 The parameter list is too long. 每个文件名的长度为64位长

by wsryyffs - Shell - 2008-05-13 21:55:56 阅读(1151) 回复(1)

find ~ -name "*.log" | xargs -L rm 从三楼的修改了一下. 在使用xargs选项时,究竟是一次获取所有参数还是分批获取参数,以及每一次获取参数的数目,都会根据该命令的选项以及系统类的可调参数来决定. use shell built-in echo command, it is not affected by the number of bytes available for the combined argument list and environment list. echo *.log|xargs rm 已经OK了,谢谢大家。如下: 直接在命令行方式键入下...

by ignu - Solaris文档中心 - 2006-06-28 21:57:09 阅读(668) 回复(0)

在pro*c中执行以下语句 EXEC SQL INSERT INTO table_message(id,soursequence,sourconnectid,recvtimestamp,linkid,sournum,destnum,spnum,msgcontent,msgcodeing,tno,ismt,terminaltype) values(MESSAGE_ID.nextval,:platdeliver.serial,:iconnectid,:curTime,:platdeliver.linkid,:platdeliver.srcnum,:platdeliver.dstnum,:platdeliver.dstnum,:platdeliver.content,:platdeliver.msgcode,:itno,1,:itertype); 有...

by ccrazy - Oracle - 2006-01-26 17:41:52 阅读(1003) 回复(0)