Bash Shell Scripting - How to iterate through directories, and copy and rename files?
        Posted  
        
            by Cypher
        on Super User
        
        See other posts from Super User
        
            or by Cypher
        
        
        
        Published on 2010-05-17T19:47:37Z
        Indexed on 
            2010/05/17
            19:51 UTC
        
        
        Read the original article
        Hit count: 334
        
I have a directory setup as follows:
/hosted/partner1/logo.png
/hosted/partner2/logo.png
/hosted/partner3/logo.png
/hosted/partner4/logo.png
/hosted/partner5/logo.png
..etc.
I want to write a script that can COPY those files to a different location, with a different file name, like this:
/partners/partner1.png
/partners/partner2.png
/partners/partner3.png
..etc.
Any ideas? I'm not so great with shell scripting and there are a lot of files that I need to migrate to a single directory...
© Super User or respective owner