0
I am trying clone a directory and it's subdirectories into another directory. I have hundreds of music directories with sub-directories that I want to convert from flac to ogg. I want all the music Subdirectories under /Music to be cloned to /Music/Oggs/ so that when I do the conversion the files will all be written to the same directory names. Here's what I have:
/Music/Van_Halen_Discography/1980 Women And Children First/
What I need is the clone of directories to this:
/Music/Oggs/Van_Halen_Discography/1980 Women And Children First/
I tried using, 'find /Music -type d |cat > /Music/Oggs'
But it didn't work, what am I missing? Thanks
1
catdoes not make directories. It just creates a text file /Music/Oggs in the given command – Vamsi – 2014-09-13T19:40:05.047