>b) -exclude - Again - there are over 50 directories - Is there a easier way?

If your directory is called "cd_dir" and you want a list of sub-directories
in cd_dir to be excluded, use something like:

find cd_dir -type d -maxdepth 1 -mindepth 1 -print > exclude_list

mkisofs [options] -exclude-list exclude_list cd_dir


The "-maxdepth" and "-mindepth" options are available with find on my Linux
system, do "man find" if using another OS. If your find doesn't have these
options, then you can still use:

find cd_dir -type d -print > exclude_list

but you will get all the subdirectories as well - which shouldn't be a 
problem, but your exclude_list may be larger ...

James Pearson


--  
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Reply via email to