Chua-Chua
July 3rd, 2006, 04:07 AM
Hello,
What is the maximum number of items in CSH lists before the "Too many arguments" is invoked?
I am trying to copy all of my MP3 files from a library to a folder, but i keep getting the "Too many arguments" error.
I have about 490 MP3 files in the folder i want to copy from.
here is a sample script...I am just trying to print out the filenames.
#!/bin/csh
set file = `find . -name "*.mp3"`
echo $file
What is the maximum number of items in CSH lists before the "Too many arguments" is invoked?
I am trying to copy all of my MP3 files from a library to a folder, but i keep getting the "Too many arguments" error.
I have about 490 MP3 files in the folder i want to copy from.
here is a sample script...I am just trying to print out the filenames.
#!/bin/csh
set file = `find . -name "*.mp3"`
echo $file