Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
paramer listing is too long
Name: oct18 Date: July 18, 2003 at 22:57:21 Pacific OS: winnt CPU/Ram: p3
Comment:
Hi folks, I face a strange problem.I have a make file that builds my exe .My exe is built by linking many libraires(.a).when ever this list of .a files increases i get parameter list is too long.Can any body help me out????
Name: wpatte Date: July 21, 2003 at 09:00:04 Pacific
Reply:
Sounds like you are overflowing the command-line buffer. Typically, the xargs command will send only enough arguments so as to not overflow. Check out the xargs command and see if it will resolve your problem.
Summary: I have a problem with the command : tar cvf - `ls | grep -v "TAR" | grep -v "DMP" | xargs`| compress -c > file.Z error 0403-027 the parameter list is too long There is more on thousand files in the di...
Summary: I want to perform a simple rm command on all the files (#600) in a particular directory. When I try rm * I get the error: The parameter list is too long. I've tried to use xargs -n10000 rm but now m...
Summary: Hi Buddies, I tried to tar files from a directory to a tape device. The directory has more than 1000 files and I got the error message for parameter list is too long The script is as follows : su - e...