[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 。 那我怎么删除呢?我很菜,拜托给出具体命令。
如果我想用ftp从一个服务器上的一个目录下的所有没有规则的文件(超过6000个),请问我该怎么办? 如果我用 ftp -n 192.168.5.3<argument list too long.系统为rhas2.1,请问我该怎么解决,注意,我要down的目标服务器也是英文的字符模式(此wu-ftp不支持汉字匹配)。
[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]太慢了 谢谢
[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 这个就不知道咋搞了
在aix主机执行ls *LZ_9_890* sh: /usr/bin/ls: 0403-027 The parameter list is too long. 每个文件名的长度为64位长
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了,谢谢大家。如下: 直接在命令行方式键入下...
在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); 有...