Copy specified subdirectories

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP












0















I have a bunch of folders in an external HDD and I want to copy a part of them. The folders have the following structure:



A001A
A003A
A004A
etc...


...and all the folders contain similar directories e.g:



HHZ
HH1
HH2
LHZ
LH1
LH2


I need to copy all the directories (A001A, A002A ...) with the subdirectories (HHZ, HH1, HH2) but with only the directories with H initial (also every files in it).



How can I do that?










share|improve this question




























    0















    I have a bunch of folders in an external HDD and I want to copy a part of them. The folders have the following structure:



    A001A
    A003A
    A004A
    etc...


    ...and all the folders contain similar directories e.g:



    HHZ
    HH1
    HH2
    LHZ
    LH1
    LH2


    I need to copy all the directories (A001A, A002A ...) with the subdirectories (HHZ, HH1, HH2) but with only the directories with H initial (also every files in it).



    How can I do that?










    share|improve this question


























      0












      0








      0








      I have a bunch of folders in an external HDD and I want to copy a part of them. The folders have the following structure:



      A001A
      A003A
      A004A
      etc...


      ...and all the folders contain similar directories e.g:



      HHZ
      HH1
      HH2
      LHZ
      LH1
      LH2


      I need to copy all the directories (A001A, A002A ...) with the subdirectories (HHZ, HH1, HH2) but with only the directories with H initial (also every files in it).



      How can I do that?










      share|improve this question
















      I have a bunch of folders in an external HDD and I want to copy a part of them. The folders have the following structure:



      A001A
      A003A
      A004A
      etc...


      ...and all the folders contain similar directories e.g:



      HHZ
      HH1
      HH2
      LHZ
      LH1
      LH2


      I need to copy all the directories (A001A, A002A ...) with the subdirectories (HHZ, HH1, HH2) but with only the directories with H initial (also every files in it).



      How can I do that?







      command-line usb directory cp






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Feb 26 at 12:16









      Rui F Ribeiro

      41.7k1483141




      41.7k1483141










      asked Feb 26 at 11:39









      timko.matetimko.mate

      34




      34




















          2 Answers
          2






          active

          oldest

          votes


















          0














          This should do the trick (assuming all the directories in the current folder are A*** directories):



          cp -r --parents */H* destination/



          You should obviously replace destination/ with your actual target.






          share|improve this answer






























            0














            If your pax supports the -0 option (and your find the -print0 predicate):



            find . -path '*/H*' -print0 | pax -0rwpe /dest/dir/


            Would copy all the files and directories that /H in their path.



            If they don't but you can guarantee file paths don't contain newline characters, you can remove both 0s in the command above.






            share|improve this answer






















              Your Answer








              StackExchange.ready(function()
              var channelOptions =
              tags: "".split(" "),
              id: "106"
              ;
              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: false,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: null,
              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%2funix.stackexchange.com%2fquestions%2f503115%2fcopy-specified-subdirectories%23new-answer', 'question_page');

              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              0














              This should do the trick (assuming all the directories in the current folder are A*** directories):



              cp -r --parents */H* destination/



              You should obviously replace destination/ with your actual target.






              share|improve this answer



























                0














                This should do the trick (assuming all the directories in the current folder are A*** directories):



                cp -r --parents */H* destination/



                You should obviously replace destination/ with your actual target.






                share|improve this answer

























                  0












                  0








                  0







                  This should do the trick (assuming all the directories in the current folder are A*** directories):



                  cp -r --parents */H* destination/



                  You should obviously replace destination/ with your actual target.






                  share|improve this answer













                  This should do the trick (assuming all the directories in the current folder are A*** directories):



                  cp -r --parents */H* destination/



                  You should obviously replace destination/ with your actual target.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Feb 26 at 11:46









                  PankiPanki

                  788412




                  788412























                      0














                      If your pax supports the -0 option (and your find the -print0 predicate):



                      find . -path '*/H*' -print0 | pax -0rwpe /dest/dir/


                      Would copy all the files and directories that /H in their path.



                      If they don't but you can guarantee file paths don't contain newline characters, you can remove both 0s in the command above.






                      share|improve this answer



























                        0














                        If your pax supports the -0 option (and your find the -print0 predicate):



                        find . -path '*/H*' -print0 | pax -0rwpe /dest/dir/


                        Would copy all the files and directories that /H in their path.



                        If they don't but you can guarantee file paths don't contain newline characters, you can remove both 0s in the command above.






                        share|improve this answer

























                          0












                          0








                          0







                          If your pax supports the -0 option (and your find the -print0 predicate):



                          find . -path '*/H*' -print0 | pax -0rwpe /dest/dir/


                          Would copy all the files and directories that /H in their path.



                          If they don't but you can guarantee file paths don't contain newline characters, you can remove both 0s in the command above.






                          share|improve this answer













                          If your pax supports the -0 option (and your find the -print0 predicate):



                          find . -path '*/H*' -print0 | pax -0rwpe /dest/dir/


                          Would copy all the files and directories that /H in their path.



                          If they don't but you can guarantee file paths don't contain newline characters, you can remove both 0s in the command above.







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Feb 26 at 11:56









                          Stéphane ChazelasStéphane Chazelas

                          311k57587945




                          311k57587945



























                              draft saved

                              draft discarded
















































                              Thanks for contributing an answer to Unix & Linux Stack Exchange!


                              • 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%2funix.stackexchange.com%2fquestions%2f503115%2fcopy-specified-subdirectories%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

                              How to check contact read email or not when send email to Individual?

                              Bahrain

                              Postfix configuration issue with fips on centos 7; mailgun relay