In <00072009042901.17043@armagedon>,
        mendes <[EMAIL PROTECTED]> asked:

>       I need to pipe to an image created from all files in a dir (not
> including the dirs within) to cdrecord.  How can I do that?  mkisofs -r *
> doesn't work. I tried gcombust with its file manager but it didn't work
> either.  I am running 1.9a05.         

  mkisofs has the ability to use file lists, so your problem is creating
one. Try something like this:

  cd MYDIR
  ls -F | grep -v '[/*@]$' > /tmp/filelist1

  The -F will cause non-files to have a character added to the end of
the filename. Unless you have filenames ending in '@' or '*' this will
work for you, and drop the non-files. You can also do it with find, but
it gets more complex, since you have to find files then drop those in
subdirectories. Time for a perl script if the simple trick above doesn't
do it for you.

-- 
   -bill davidsen ([EMAIL PROTECTED])
"The secret to procrastination is to put things off until the
 last possible moment - but no longer"  -me


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



Reply via email to