Concatenation of a large number of files


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Concatenation of a large number of files
# 8  
Old 11-16-2010
Quote:
Originally Posted by ctsgnb
No prob dude ! Smilie

Solaris also has limitation to wildcard expansion :
Code:
$ uname -a
SunOS <anonymized> 5.9 Generic_122300-54 sun4u sparc SUNW,Sun-Fire-15000
$ ls | wc -l
   68616
$ ls -l *
bash: /usr/bin/ls: Arg list too long
$

And do you get an error message when you do:
Code:
for i in *; do : ; done

# 9  
Old 11-16-2010
Quote:
Originally Posted by Scrutinizer
And do you get an error message when you do:
Code:
for i in *; do : ; done

@Scruti
You got me : the "for" loop runs fine .

Ok i got it : this is a limitation of the ls command (not the shell expansion)
correct ?

ls command should be coded to be able to handle huge number of argument. But I suppose it is choice of design, for performance reason.
Do you have any clue ?

Code:
$ print *
bash: print: command not found
$ sh print *
bash: /usr/bin/sh: Arg list too long
$

# 10  
Old 11-16-2010
It is a limitation for external commands:
Quote:
{ARG_MAX} Maximum length of argument to the exec functions including environment data.
POSIX: limits.h

So the number of arguments that external commands can handle is limited by ARG_MAX. This is not the case for shell builtins.
This User Gave Thanks to Scrutinizer For This Post:
# 11  
Old 11-16-2010
Quote:
Originally Posted by ctsgnb
ls command should be coded to be able to handle huge number of argument.
It's an operating system limitation. They can't. Ergo, you should program in ways that don't cram potentially unlimited numbers of arguments into a commandline. In some shells, you can get away with cramming billions of arguments into a builtin (and ONLY a builtin), but you really can't depend on that.

Bad:cat * > output
Good:ls | xargs cat > output xargs understands maximum arguments and can split them intelligently across several cat calls.

The same goes for things like for LINE in `cat foo` ; do ... ; done when foo exceeds 4K in size you may discover the maximum size of a shell variable on your system. Instead: while read LINE ; do ... ; done < foo

Essentially the idea's the same in all cases: Never force the shell to hold an entire anything in memory. (That actually applies to most programming languages, but shell makes it deceivingly easy to do so...) You'll hit walls at inconvenient times and it's never efficient. Process in bits.

Last edited by Corona688; 11-16-2010 at 04:16 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Removing large number of temp files

Hi All, I am having a situation now to delete a huge number of temp files created during run times approx. 16700+ files. We have never imagined that we will get this this much big list of files during run time. It worked fine for lesser no of files in the list. But when list is huge we are... (7 Replies)
Discussion started by: mad man
7 Replies

2. Shell Programming and Scripting

Sftp large number of files

Want to sftp large number of files ... approx 150 files will come to server every minute. (AIX box) Also need make sure file has been sftped successfully... Please let me know : 1. What is the best / faster way to transfer files? 2. should I use batch option -b so that connectivity will be... (3 Replies)
Discussion started by: vegasluxor
3 Replies

3. UNIX for Dummies Questions & Answers

Rename a large number of files in subdirectories

Hi, I have a large number of subdirectories (>200), and in each of these directories there is a file with a name like "opp1234.dat". I'd like to know how I could change the names of these files to say "out.dat" in all these subdirectories in one go. Thanks! (5 Replies)
Discussion started by: lost.identity
5 Replies

4. Shell Programming and Scripting

Using find in a directory containing large number of files

Hi All, I have searched this forum for related posts but could not find one that fits mine. I have a shell script which removes all the XML tags including the text inside the tags from some 4 million XML files. The shell script looks like this (MODIFIED): find . "*.xml" -print | while read... (6 Replies)
Discussion started by: shoaibjameel123
6 Replies

5. UNIX for Dummies Questions & Answers

Delete large number of files

Hi. I need to delete a large number of files listed in a txt file. There are over 90000 files in the list. Some of the directory names and some of the file names do have spaces in them. In the file, each line is a full path to a file: /path/to/the files/file1 /path/to/some other/files/file 2... (4 Replies)
Discussion started by: inakajin
4 Replies

6. UNIX for Dummies Questions & Answers

questing regarding tar large number of files

I want to tar large number of files about 150k. i am using the find command as below to create a file with all file names. & then trying to use the tar -I command as below. # find . -type f -name "gpi*" > include-file # tar -I include-file -cvf newfile.tar This i got from one of the posts... (2 Replies)
Discussion started by: crux123
2 Replies

7. Shell Programming and Scripting

Need help combining large number of text files

Hi, i have more than 1000 data files(.txt) like this first file format: 178.83 554.545 179.21 80.392 second file: 178.83 990.909 179.21 90.196 etc. I want to combine them to the following format: 178.83,554.545,990.909,... 179.21,80.392,90.196,... (7 Replies)
Discussion started by: mr_monocyte
7 Replies

8. Shell Programming and Scripting

Creating large number of files of specific size

Hi I am new to shell scripting.I want to create a batch file which creates a desired number of files with a specific size say 1MB each to consume space.How can i go about it using for loop /any other loop condition using shell script? Thanks (3 Replies)
Discussion started by: swatideswal
3 Replies

9. Shell Programming and Scripting

Script to Compare a large number of files.

I have a large Filesystem on an AIX server and another one on a Red Hat box. I have syncd the two filesystems using rsysnc. What Im looking for is a script that would compare to the two filesystems to make sure the bits match up and the number of files match up. its around 2.8 million... (5 Replies)
Discussion started by: zippdawg2001
5 Replies

10. Shell Programming and Scripting

moving large number of files

I have a task to move more than 35000 files every two hours, from the same directory to another directory based on a file that has the list of filenames I tried the following logics (1) find . -name \*.dat > list for i in `cat list` do mv $i test/ done (2) cat list|xargs -i mv "{}"... (7 Replies)
Discussion started by: bryan
7 Replies
Login or Register to Ask a Question