Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Date: Thu, 8 Jul 2004 09:20:47 -0500 From: Mike Eggleston To: cygwin AT cygwin DOT com Subject: Re: ls could not list all files Message-ID: <20040708142047.GA4907@mikee.ath.cx> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.1i Organization: The Math Forum X-IsSubscribed: yes On Thu, 08 Jul 2004, Vinay Kumar wrote: > Dear all, > I am facing strange problem. I have a directory test1 in which there > are number of files. I am running following command and see some problem > here. > > $ ls test1/* | wc > 2745 2745 32724 > > So total number of charcter if all filename is written on command line is > 32724. Now I create another file. > > $ touch test1/a > $ ls test1/* > bash: /bin/ls: Invalid argument > > ls does not work in this case. Is there any limitation on total number of > charcters in command line? How could we change it to higher limit? > > I am using cygwin 1.5.5.1 and fileutils-4.1-2. This is a unix question. $ ls -1 test1 | wc $ touch test1/a $ ls -1 test1 | wc You do not need the '/*' at the end of the ls. Mike -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/