ls - maximum number of files


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers ls - maximum number of files
# 1  
Old 12-07-2007
Question ls - maximum number of files

what is the maximum number ls can list down
# 2  
Old 12-07-2007
I've seen it stopping at 30000 files, you should try listing them at smaller chunks with find & xargs
# 3  
Old 12-07-2007
ls -f
should be able to handle any size of directory. The other forms of ls try to read the entire directory into virtual memory for sorting and can bump into the max size for a data segment.
# 4  
Old 12-07-2007
Wildcard arguments to a command may be expanded by the shell before the command executes - this is globbing.

If this happens, like ls * instead of ls, then the problem is the max size of arguments in bytes to an exec - something listed as ARG_MAX in limits.h. Note: _POSIX_ARG_MAX (4096) is what POSIX says to use, not what your system implmentation supports. ARG_MAX is usually way larger then 4096. And is the one that counts.

You could easily bump into ARG_MAX problems with a huge directory with longer filenames, as well.
# 5  
Old 12-10-2007
ls - maximum number of files

how to ensure ls didn't break in the middle due to max number limits in my script

i am not sure whether ls -f will help in this
# 6  
Old 12-10-2007
One way:
Try creating a simple ls in C or perl or python, using opendir(), readdir().

Did just plain ls -f with<no wildcards> break?

It should be okay unless something else has a problem - like the filesystem. filesystems have limits to the number of files they can support. Or they can become corrupted. You can look in /etc/fstab to see what filesystem supports the directory you are looking at.

Waht kinds of errors are you seeing now?
# 7  
Old 10-15-2008
Quote:
Originally Posted by jim mcnamara
[...] ARG_MAX is usually way larger then 4096. And is the one that counts.
Nitpicking a bit for the records:

If the run time limit can be modified, ARG_MAX from the headers won't reflect it.
But "getconf ARG_MAX" (using the libc call "sysconf") usually is correct.

However, on systems without fixed limit (e.g. Linux-2.6.23 ff., or Hurd), even getconf might report some obsolete historic default value (and it does so on Linux).
Possible reasons might be: either trying not to confuse autoconf scripts and alike, or the libc just couldn't catch up yet.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Maximum number of data in Python

Hi all, I would like to save my output data in two columns. I tried print(x,y) but have two problems: 1. There are ~10000 values for each x and y, but the intermediates are omitted; 2. I'd like to list data in two columns instead of two arrays (BTW, it's fine as I can format it using other... (3 Replies)
Discussion started by: sxiong
3 Replies

2. UNIX for Dummies Questions & Answers

Maximum number of sed squeezing

Hi all, What is the maximum number of sed squeezing in one shell?? I've surprised with this message when I squeezed 50 sed in the same shell: 253: Identifier too long - maximum length is 18.This is what I've did in my sed query | sed -e "s/ 0 /Default /" | sed -e "s/ 1 ... (2 Replies)
Discussion started by: leo_ultra_leo
2 Replies

3. Shell Programming and Scripting

Maximum number of characters in a line.

Hi, Could any one please let me know what is the maximum number of characters that will fit into a single line of a flat file on a unix. Thanks. (1 Reply)
Discussion started by: Shivdatta
1 Replies

4. UNIX for Dummies Questions & Answers

maximum number of arguments

Hi, What is the maximum number of arguments that could be passed to zsh ? To find out that I tried a simple script. And the maximum number of arguments that could be passed turned out to be 23394 #! /bin/zsh arg=1 i=1 subIndex=23000 while do arg=$arg" "$i i=$(($i + 1))... (9 Replies)
Discussion started by: matrixmadhan
9 Replies

5. Solaris

Maximum Number of threads suuported????

Hi, Anybody knows the maximum number of threads suuported by a process in solaris os. Please reply Thanks in advance :( (1 Reply)
Discussion started by: Agnello
1 Replies

6. Programming

maximum number of dots in a domain name

maximum number of dots in a domain name - not a sub-domain name. for example: mydomain.com ------ one dot mydomain.com.au ------ two dots do you know maximum number of dots in a domain name and could you provide a sample? thx. (1 Reply)
Discussion started by: hello20009876
1 Replies

7. UNIX for Dummies Questions & Answers

maximum number of input on solaris

Hi, Can anyone tell me what the maximum amount of input characters is on solaris command line? (standard ksh I think) (1 Reply)
Discussion started by: marcello
1 Replies

8. UNIX for Dummies Questions & Answers

Maximum number of users allowed

How do i determen (what command) the max. number of users allowed Thanks in advance (10 Replies)
Discussion started by: siza
10 Replies

9. UNIX for Advanced & Expert Users

Maximum number of threads per user

Anybody knows how to setup Maximum number of threads per user or some other value on Sun Solaris 8. (1 Reply)
Discussion started by: s_aamir
1 Replies
Login or Register to Ask a Question