Using scp to get all files in multiple directories












1















I have a directory structure which looks like A1/B1/C1/files111*, A1/B1/C2/files112*, A1/B2/C1/files121*, A1/B2/C2/files122*, etc. so that all files in all directories are unique. Is there a way to use scp (or some other tool) to pull all terminal files files###* at once?










share|improve this question



























    1















    I have a directory structure which looks like A1/B1/C1/files111*, A1/B1/C2/files112*, A1/B2/C1/files121*, A1/B2/C2/files122*, etc. so that all files in all directories are unique. Is there a way to use scp (or some other tool) to pull all terminal files files###* at once?










    share|improve this question

























      1












      1








      1


      0






      I have a directory structure which looks like A1/B1/C1/files111*, A1/B1/C2/files112*, A1/B2/C1/files121*, A1/B2/C2/files122*, etc. so that all files in all directories are unique. Is there a way to use scp (or some other tool) to pull all terminal files files###* at once?










      share|improve this question














      I have a directory structure which looks like A1/B1/C1/files111*, A1/B1/C2/files112*, A1/B2/C1/files121*, A1/B2/C2/files122*, etc. so that all files in all directories are unique. Is there a way to use scp (or some other tool) to pull all terminal files files###* at once?







      linux scp






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked May 4 '15 at 20:09









      drjrm3drjrm3

      62931733




      62931733






















          3 Answers
          3






          active

          oldest

          votes


















          0














          Since you didn't specify this in the question, I will presume that the directory structure is remote, and you want it local.



          What you need to do is use wildcards, but escape them on the client side, so that your local shell ignores them and passes them on. Combine that with a recursive flag (-r), and it should perform how you want it:



          scp -r remotemachine:some/directory/files*   /some/local/target/directory/


          The important part is the backslash, as that makes your local shell ignore the asterisk, and pass it on instead. This should allow you to pull all files* from remote, including subdirectories. It will also pull any actual files whos name begin with files*.






          share|improve this answer































            0














            First you have to consider what you want to happen to the files that are copied in this way, and how it may affect future copy operations. Are they going to stay there? Will they be deleted? Archived? Once you know this you can build your copy command, and then the necessary cleanup operations. Here's a sample script that first copies all existing files, then deletes them from the remote server.



            There's a risk the files may change between copy and delete operations, so I'd first move them to a temp dir, then copy and delete them from there, allowing the working directory to continue regular operation.



            I'd also create a cron job to retrieve these files automatically at the same time each day, and add some sanity checks to ensure the operations are completed successfully.



            #!/bin/bash
            HOST="RemoteServerIPorHostName"
            localDir="/some/local/dir"

            for remoteTargets in "/A1/B1/C1/files111*" "/A1/B1/C2/files112*" "/A1/B2/C1/files121*" "/A1/B2/C2/files122*"
            do
            scp -pr user@$HOST:$remoteTargets $localDir
            ssh -t user@$HOST 'rm -rf $remoteTargets'
            done





            share|improve this answer































              0














              ssh user@remote "find /target/A1 -iname "*files*" -exec scp {} user@local:/desitnation ;"




              • ssh connects to a remote machine and execute code enclosed by the double quotes ""


              • find searchs inside of /target/A1 directory for all files containing the keyword "files". Please note you need the backslashes for case insensitive search parameter -iname and the double quotes in order to avoid leaving the previous pair too early.


              • -exec is another find parameter, used to execute code. In our case we execute scp and pass all search results from find to scp with the curved brackets {}.


              • scp copies your found files to your local or any other machine.


              This worked in my test setup as I have exchanged the public keys in order to use authentication without a password.






              share|improve this answer

























                Your Answer








                StackExchange.ready(function() {
                var channelOptions = {
                tags: "".split(" "),
                id: "3"
                };
                initTagRenderer("".split(" "), "".split(" "), channelOptions);

                StackExchange.using("externalEditor", function() {
                // Have to fire editor after snippets, if snippets enabled
                if (StackExchange.settings.snippets.snippetsEnabled) {
                StackExchange.using("snippets", function() {
                createEditor();
                });
                }
                else {
                createEditor();
                }
                });

                function createEditor() {
                StackExchange.prepareEditor({
                heartbeatType: 'answer',
                autoActivateHeartbeat: false,
                convertImagesToLinks: true,
                noModals: true,
                showLowRepImageUploadWarning: true,
                reputationToPostImages: 10,
                bindNavPrevention: true,
                postfix: "",
                imageUploader: {
                brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                allowUrls: true
                },
                onDemand: true,
                discardSelector: ".discard-answer"
                ,immediatelyShowMarkdownHelp:true
                });


                }
                });














                draft saved

                draft discarded


















                StackExchange.ready(
                function () {
                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f909730%2fusing-scp-to-get-all-files-in-multiple-directories%23new-answer', 'question_page');
                }
                );

                Post as a guest















                Required, but never shown

























                3 Answers
                3






                active

                oldest

                votes








                3 Answers
                3






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes









                0














                Since you didn't specify this in the question, I will presume that the directory structure is remote, and you want it local.



                What you need to do is use wildcards, but escape them on the client side, so that your local shell ignores them and passes them on. Combine that with a recursive flag (-r), and it should perform how you want it:



                scp -r remotemachine:some/directory/files*   /some/local/target/directory/


                The important part is the backslash, as that makes your local shell ignore the asterisk, and pass it on instead. This should allow you to pull all files* from remote, including subdirectories. It will also pull any actual files whos name begin with files*.






                share|improve this answer




























                  0














                  Since you didn't specify this in the question, I will presume that the directory structure is remote, and you want it local.



                  What you need to do is use wildcards, but escape them on the client side, so that your local shell ignores them and passes them on. Combine that with a recursive flag (-r), and it should perform how you want it:



                  scp -r remotemachine:some/directory/files*   /some/local/target/directory/


                  The important part is the backslash, as that makes your local shell ignore the asterisk, and pass it on instead. This should allow you to pull all files* from remote, including subdirectories. It will also pull any actual files whos name begin with files*.






                  share|improve this answer


























                    0












                    0








                    0







                    Since you didn't specify this in the question, I will presume that the directory structure is remote, and you want it local.



                    What you need to do is use wildcards, but escape them on the client side, so that your local shell ignores them and passes them on. Combine that with a recursive flag (-r), and it should perform how you want it:



                    scp -r remotemachine:some/directory/files*   /some/local/target/directory/


                    The important part is the backslash, as that makes your local shell ignore the asterisk, and pass it on instead. This should allow you to pull all files* from remote, including subdirectories. It will also pull any actual files whos name begin with files*.






                    share|improve this answer













                    Since you didn't specify this in the question, I will presume that the directory structure is remote, and you want it local.



                    What you need to do is use wildcards, but escape them on the client side, so that your local shell ignores them and passes them on. Combine that with a recursive flag (-r), and it should perform how you want it:



                    scp -r remotemachine:some/directory/files*   /some/local/target/directory/


                    The important part is the backslash, as that makes your local shell ignore the asterisk, and pass it on instead. This should allow you to pull all files* from remote, including subdirectories. It will also pull any actual files whos name begin with files*.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered May 4 '15 at 20:20









                    JarmundJarmund

                    4,68452148




                    4,68452148

























                        0














                        First you have to consider what you want to happen to the files that are copied in this way, and how it may affect future copy operations. Are they going to stay there? Will they be deleted? Archived? Once you know this you can build your copy command, and then the necessary cleanup operations. Here's a sample script that first copies all existing files, then deletes them from the remote server.



                        There's a risk the files may change between copy and delete operations, so I'd first move them to a temp dir, then copy and delete them from there, allowing the working directory to continue regular operation.



                        I'd also create a cron job to retrieve these files automatically at the same time each day, and add some sanity checks to ensure the operations are completed successfully.



                        #!/bin/bash
                        HOST="RemoteServerIPorHostName"
                        localDir="/some/local/dir"

                        for remoteTargets in "/A1/B1/C1/files111*" "/A1/B1/C2/files112*" "/A1/B2/C1/files121*" "/A1/B2/C2/files122*"
                        do
                        scp -pr user@$HOST:$remoteTargets $localDir
                        ssh -t user@$HOST 'rm -rf $remoteTargets'
                        done





                        share|improve this answer




























                          0














                          First you have to consider what you want to happen to the files that are copied in this way, and how it may affect future copy operations. Are they going to stay there? Will they be deleted? Archived? Once you know this you can build your copy command, and then the necessary cleanup operations. Here's a sample script that first copies all existing files, then deletes them from the remote server.



                          There's a risk the files may change between copy and delete operations, so I'd first move them to a temp dir, then copy and delete them from there, allowing the working directory to continue regular operation.



                          I'd also create a cron job to retrieve these files automatically at the same time each day, and add some sanity checks to ensure the operations are completed successfully.



                          #!/bin/bash
                          HOST="RemoteServerIPorHostName"
                          localDir="/some/local/dir"

                          for remoteTargets in "/A1/B1/C1/files111*" "/A1/B1/C2/files112*" "/A1/B2/C1/files121*" "/A1/B2/C2/files122*"
                          do
                          scp -pr user@$HOST:$remoteTargets $localDir
                          ssh -t user@$HOST 'rm -rf $remoteTargets'
                          done





                          share|improve this answer


























                            0












                            0








                            0







                            First you have to consider what you want to happen to the files that are copied in this way, and how it may affect future copy operations. Are they going to stay there? Will they be deleted? Archived? Once you know this you can build your copy command, and then the necessary cleanup operations. Here's a sample script that first copies all existing files, then deletes them from the remote server.



                            There's a risk the files may change between copy and delete operations, so I'd first move them to a temp dir, then copy and delete them from there, allowing the working directory to continue regular operation.



                            I'd also create a cron job to retrieve these files automatically at the same time each day, and add some sanity checks to ensure the operations are completed successfully.



                            #!/bin/bash
                            HOST="RemoteServerIPorHostName"
                            localDir="/some/local/dir"

                            for remoteTargets in "/A1/B1/C1/files111*" "/A1/B1/C2/files112*" "/A1/B2/C1/files121*" "/A1/B2/C2/files122*"
                            do
                            scp -pr user@$HOST:$remoteTargets $localDir
                            ssh -t user@$HOST 'rm -rf $remoteTargets'
                            done





                            share|improve this answer













                            First you have to consider what you want to happen to the files that are copied in this way, and how it may affect future copy operations. Are they going to stay there? Will they be deleted? Archived? Once you know this you can build your copy command, and then the necessary cleanup operations. Here's a sample script that first copies all existing files, then deletes them from the remote server.



                            There's a risk the files may change between copy and delete operations, so I'd first move them to a temp dir, then copy and delete them from there, allowing the working directory to continue regular operation.



                            I'd also create a cron job to retrieve these files automatically at the same time each day, and add some sanity checks to ensure the operations are completed successfully.



                            #!/bin/bash
                            HOST="RemoteServerIPorHostName"
                            localDir="/some/local/dir"

                            for remoteTargets in "/A1/B1/C1/files111*" "/A1/B1/C2/files112*" "/A1/B2/C1/files121*" "/A1/B2/C2/files122*"
                            do
                            scp -pr user@$HOST:$remoteTargets $localDir
                            ssh -t user@$HOST 'rm -rf $remoteTargets'
                            done






                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered May 4 '15 at 20:58









                            Alex AtkinsonAlex Atkinson

                            2,735913




                            2,735913























                                0














                                ssh user@remote "find /target/A1 -iname "*files*" -exec scp {} user@local:/desitnation ;"




                                • ssh connects to a remote machine and execute code enclosed by the double quotes ""


                                • find searchs inside of /target/A1 directory for all files containing the keyword "files". Please note you need the backslashes for case insensitive search parameter -iname and the double quotes in order to avoid leaving the previous pair too early.


                                • -exec is another find parameter, used to execute code. In our case we execute scp and pass all search results from find to scp with the curved brackets {}.


                                • scp copies your found files to your local or any other machine.


                                This worked in my test setup as I have exchanged the public keys in order to use authentication without a password.






                                share|improve this answer






























                                  0














                                  ssh user@remote "find /target/A1 -iname "*files*" -exec scp {} user@local:/desitnation ;"




                                  • ssh connects to a remote machine and execute code enclosed by the double quotes ""


                                  • find searchs inside of /target/A1 directory for all files containing the keyword "files". Please note you need the backslashes for case insensitive search parameter -iname and the double quotes in order to avoid leaving the previous pair too early.


                                  • -exec is another find parameter, used to execute code. In our case we execute scp and pass all search results from find to scp with the curved brackets {}.


                                  • scp copies your found files to your local or any other machine.


                                  This worked in my test setup as I have exchanged the public keys in order to use authentication without a password.






                                  share|improve this answer




























                                    0












                                    0








                                    0







                                    ssh user@remote "find /target/A1 -iname "*files*" -exec scp {} user@local:/desitnation ;"




                                    • ssh connects to a remote machine and execute code enclosed by the double quotes ""


                                    • find searchs inside of /target/A1 directory for all files containing the keyword "files". Please note you need the backslashes for case insensitive search parameter -iname and the double quotes in order to avoid leaving the previous pair too early.


                                    • -exec is another find parameter, used to execute code. In our case we execute scp and pass all search results from find to scp with the curved brackets {}.


                                    • scp copies your found files to your local or any other machine.


                                    This worked in my test setup as I have exchanged the public keys in order to use authentication without a password.






                                    share|improve this answer















                                    ssh user@remote "find /target/A1 -iname "*files*" -exec scp {} user@local:/desitnation ;"




                                    • ssh connects to a remote machine and execute code enclosed by the double quotes ""


                                    • find searchs inside of /target/A1 directory for all files containing the keyword "files". Please note you need the backslashes for case insensitive search parameter -iname and the double quotes in order to avoid leaving the previous pair too early.


                                    • -exec is another find parameter, used to execute code. In our case we execute scp and pass all search results from find to scp with the curved brackets {}.


                                    • scp copies your found files to your local or any other machine.


                                    This worked in my test setup as I have exchanged the public keys in order to use authentication without a password.







                                    share|improve this answer














                                    share|improve this answer



                                    share|improve this answer








                                    edited May 6 '15 at 8:38

























                                    answered May 4 '15 at 20:46









                                    XylolXylol

                                    112




                                    112






























                                        draft saved

                                        draft discarded




















































                                        Thanks for contributing an answer to Super User!


                                        • Please be sure to answer the question. Provide details and share your research!

                                        But avoid



                                        • Asking for help, clarification, or responding to other answers.

                                        • Making statements based on opinion; back them up with references or personal experience.


                                        To learn more, see our tips on writing great answers.




                                        draft saved


                                        draft discarded














                                        StackExchange.ready(
                                        function () {
                                        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f909730%2fusing-scp-to-get-all-files-in-multiple-directories%23new-answer', 'question_page');
                                        }
                                        );

                                        Post as a guest















                                        Required, but never shown





















































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown

































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown







                                        Popular posts from this blog

                                        If I really need a card on my start hand, how many mulligans make sense? [duplicate]

                                        Alcedinidae

                                        Can an atomic nucleus contain both particles and antiparticles? [duplicate]