copy directory into another directory multiple times

Multi tool use
Multi tool use

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











up vote
0
down vote

favorite












I'm on a Mac and trying to script out a few things from our build for Xcode. There are dSYM that are directories that you can inspect with Show package contents. In my script that gets run after Xcode builds, I try to copy a dSYM to the output directory.



my command is this:



cp -vR "$BUILD_PATH/$CONFIGURATION-$DEVICE_TYPE/$FRAMEWORK.dSYM" "$OUTPUT_FOLDER/$FRAMEWORK.dSYM"


Expanded that would basically look like



cp -vR "$BUILD_PATH/$ANOTHER_FOLDER/MyFramework.framework.dSYM" "$OUTPUT_FOLDER/MyFramework.framework.dSYM"


What happens is I get my dsym folder copied into the dsym folder so it looks like this:



MyFramework.framework.dSYM/MyFramework.framework.dSYM


I can rm -rf the dSYM before I copy it over, but was more curious if there was another way without removing it and what I was doing wrong. Thanks!









share







New contributor




Crystal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.























    up vote
    0
    down vote

    favorite












    I'm on a Mac and trying to script out a few things from our build for Xcode. There are dSYM that are directories that you can inspect with Show package contents. In my script that gets run after Xcode builds, I try to copy a dSYM to the output directory.



    my command is this:



    cp -vR "$BUILD_PATH/$CONFIGURATION-$DEVICE_TYPE/$FRAMEWORK.dSYM" "$OUTPUT_FOLDER/$FRAMEWORK.dSYM"


    Expanded that would basically look like



    cp -vR "$BUILD_PATH/$ANOTHER_FOLDER/MyFramework.framework.dSYM" "$OUTPUT_FOLDER/MyFramework.framework.dSYM"


    What happens is I get my dsym folder copied into the dsym folder so it looks like this:



    MyFramework.framework.dSYM/MyFramework.framework.dSYM


    I can rm -rf the dSYM before I copy it over, but was more curious if there was another way without removing it and what I was doing wrong. Thanks!









    share







    New contributor




    Crystal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.





















      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I'm on a Mac and trying to script out a few things from our build for Xcode. There are dSYM that are directories that you can inspect with Show package contents. In my script that gets run after Xcode builds, I try to copy a dSYM to the output directory.



      my command is this:



      cp -vR "$BUILD_PATH/$CONFIGURATION-$DEVICE_TYPE/$FRAMEWORK.dSYM" "$OUTPUT_FOLDER/$FRAMEWORK.dSYM"


      Expanded that would basically look like



      cp -vR "$BUILD_PATH/$ANOTHER_FOLDER/MyFramework.framework.dSYM" "$OUTPUT_FOLDER/MyFramework.framework.dSYM"


      What happens is I get my dsym folder copied into the dsym folder so it looks like this:



      MyFramework.framework.dSYM/MyFramework.framework.dSYM


      I can rm -rf the dSYM before I copy it over, but was more curious if there was another way without removing it and what I was doing wrong. Thanks!









      share







      New contributor




      Crystal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      I'm on a Mac and trying to script out a few things from our build for Xcode. There are dSYM that are directories that you can inspect with Show package contents. In my script that gets run after Xcode builds, I try to copy a dSYM to the output directory.



      my command is this:



      cp -vR "$BUILD_PATH/$CONFIGURATION-$DEVICE_TYPE/$FRAMEWORK.dSYM" "$OUTPUT_FOLDER/$FRAMEWORK.dSYM"


      Expanded that would basically look like



      cp -vR "$BUILD_PATH/$ANOTHER_FOLDER/MyFramework.framework.dSYM" "$OUTPUT_FOLDER/MyFramework.framework.dSYM"


      What happens is I get my dsym folder copied into the dsym folder so it looks like this:



      MyFramework.framework.dSYM/MyFramework.framework.dSYM


      I can rm -rf the dSYM before I copy it over, but was more curious if there was another way without removing it and what I was doing wrong. Thanks!







      shell-script cp





      share







      New contributor




      Crystal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.










      share







      New contributor




      Crystal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.








      share



      share






      New contributor




      Crystal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 9 mins ago









      Crystal

      101




      101




      New contributor




      Crystal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Crystal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Crystal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.

























          active

          oldest

          votes











          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',
          convertImagesToLinks: false,
          noModals: false,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );






          Crystal is a new contributor. Be nice, and check out our Code of Conduct.









           

          draft saved


          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f477375%2fcopy-directory-into-another-directory-multiple-times%23new-answer', 'question_page');

          );

          Post as a guest



































          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          Crystal is a new contributor. Be nice, and check out our Code of Conduct.









           

          draft saved


          draft discarded


















          Crystal is a new contributor. Be nice, and check out our Code of Conduct.












          Crystal is a new contributor. Be nice, and check out our Code of Conduct.











          Crystal is a new contributor. Be nice, and check out our Code of Conduct.













           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f477375%2fcopy-directory-into-another-directory-multiple-times%23new-answer', 'question_page');

          );

          Post as a guest













































































          kDngwqQ44ZbUJ,6epTu aQJ,nFQ5deu2ZyVtnhV9h 9rrjTPco9 wzfV7j d2mdoLSiLA,D0b6Q8CTwfE4Re2hN
          diMz8Rq53zyMBIXj0Jp,LcxkmjwMOvy

          Popular posts from this blog

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

          How many registers does an x86_64 CPU actually have?

          Displaying single band from multi-band raster using QGIS