rsync multiple files to multiple directories

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












2















I need to move a large number of files that need to go to different directories i.e.



file1.mpg to /mnt/s3/directory1/file1.mpg
file2.mpg to /mnt/s3/directorya/file2.mpg
file3.mpg to /mnt/s3/directoryx/anotherfilename.mpg

rsync -av --progress --inplace /path/to/file1.mpg /different/path/directory/1/file1.mpg


Works but I would like to batch all the file transfers together so I don't have to monitor it all the time and keep manually put in each rsync. I wrote a quick shell script to rsync the files but after the file is transferred it seems to hang there waiting for some sort of user input. If ^c it continues on, otherwise will hang there indefinitely.










share|improve this question

















  • 1





    AFAIK there is no feasible way to accomplish what you want. Why don't you post your shell script, there are plenty of people here who can find the problem.

    – Graeme
    Feb 24 '14 at 18:10











  • Do you want to move or copy ?

    – X Tian
    Feb 24 '14 at 19:42











  • I have never used the --inplace switch but seems like it updates and existing file on the destination. And if your destination is, somehow forcing a confirmation, i.e. hit 'y' or 'n', that might explain why it is hanging. Try making the destination file names such that they will not exists in ther detination location and see if your script will proceed w/o needing a ctrl-c etc. Just a troubleshooting suggestion, not intended to be a solution.

    – MelBurslan
    Feb 24 '14 at 21:23






  • 2





    I don't understand the question. What's wrong with mv file1.mpg /mnt/s3/directory1/; mv file2.mpg /mnt/s3/directorya/; …?

    – Gilles
    Feb 24 '14 at 23:46















2















I need to move a large number of files that need to go to different directories i.e.



file1.mpg to /mnt/s3/directory1/file1.mpg
file2.mpg to /mnt/s3/directorya/file2.mpg
file3.mpg to /mnt/s3/directoryx/anotherfilename.mpg

rsync -av --progress --inplace /path/to/file1.mpg /different/path/directory/1/file1.mpg


Works but I would like to batch all the file transfers together so I don't have to monitor it all the time and keep manually put in each rsync. I wrote a quick shell script to rsync the files but after the file is transferred it seems to hang there waiting for some sort of user input. If ^c it continues on, otherwise will hang there indefinitely.










share|improve this question

















  • 1





    AFAIK there is no feasible way to accomplish what you want. Why don't you post your shell script, there are plenty of people here who can find the problem.

    – Graeme
    Feb 24 '14 at 18:10











  • Do you want to move or copy ?

    – X Tian
    Feb 24 '14 at 19:42











  • I have never used the --inplace switch but seems like it updates and existing file on the destination. And if your destination is, somehow forcing a confirmation, i.e. hit 'y' or 'n', that might explain why it is hanging. Try making the destination file names such that they will not exists in ther detination location and see if your script will proceed w/o needing a ctrl-c etc. Just a troubleshooting suggestion, not intended to be a solution.

    – MelBurslan
    Feb 24 '14 at 21:23






  • 2





    I don't understand the question. What's wrong with mv file1.mpg /mnt/s3/directory1/; mv file2.mpg /mnt/s3/directorya/; …?

    – Gilles
    Feb 24 '14 at 23:46













2












2








2








I need to move a large number of files that need to go to different directories i.e.



file1.mpg to /mnt/s3/directory1/file1.mpg
file2.mpg to /mnt/s3/directorya/file2.mpg
file3.mpg to /mnt/s3/directoryx/anotherfilename.mpg

rsync -av --progress --inplace /path/to/file1.mpg /different/path/directory/1/file1.mpg


Works but I would like to batch all the file transfers together so I don't have to monitor it all the time and keep manually put in each rsync. I wrote a quick shell script to rsync the files but after the file is transferred it seems to hang there waiting for some sort of user input. If ^c it continues on, otherwise will hang there indefinitely.










share|improve this question














I need to move a large number of files that need to go to different directories i.e.



file1.mpg to /mnt/s3/directory1/file1.mpg
file2.mpg to /mnt/s3/directorya/file2.mpg
file3.mpg to /mnt/s3/directoryx/anotherfilename.mpg

rsync -av --progress --inplace /path/to/file1.mpg /different/path/directory/1/file1.mpg


Works but I would like to batch all the file transfers together so I don't have to monitor it all the time and keep manually put in each rsync. I wrote a quick shell script to rsync the files but after the file is transferred it seems to hang there waiting for some sort of user input. If ^c it continues on, otherwise will hang there indefinitely.







command-line rsync






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Feb 24 '14 at 18:03









Mark DMark D

5962720




5962720







  • 1





    AFAIK there is no feasible way to accomplish what you want. Why don't you post your shell script, there are plenty of people here who can find the problem.

    – Graeme
    Feb 24 '14 at 18:10











  • Do you want to move or copy ?

    – X Tian
    Feb 24 '14 at 19:42











  • I have never used the --inplace switch but seems like it updates and existing file on the destination. And if your destination is, somehow forcing a confirmation, i.e. hit 'y' or 'n', that might explain why it is hanging. Try making the destination file names such that they will not exists in ther detination location and see if your script will proceed w/o needing a ctrl-c etc. Just a troubleshooting suggestion, not intended to be a solution.

    – MelBurslan
    Feb 24 '14 at 21:23






  • 2





    I don't understand the question. What's wrong with mv file1.mpg /mnt/s3/directory1/; mv file2.mpg /mnt/s3/directorya/; …?

    – Gilles
    Feb 24 '14 at 23:46












  • 1





    AFAIK there is no feasible way to accomplish what you want. Why don't you post your shell script, there are plenty of people here who can find the problem.

    – Graeme
    Feb 24 '14 at 18:10











  • Do you want to move or copy ?

    – X Tian
    Feb 24 '14 at 19:42











  • I have never used the --inplace switch but seems like it updates and existing file on the destination. And if your destination is, somehow forcing a confirmation, i.e. hit 'y' or 'n', that might explain why it is hanging. Try making the destination file names such that they will not exists in ther detination location and see if your script will proceed w/o needing a ctrl-c etc. Just a troubleshooting suggestion, not intended to be a solution.

    – MelBurslan
    Feb 24 '14 at 21:23






  • 2





    I don't understand the question. What's wrong with mv file1.mpg /mnt/s3/directory1/; mv file2.mpg /mnt/s3/directorya/; …?

    – Gilles
    Feb 24 '14 at 23:46







1




1





AFAIK there is no feasible way to accomplish what you want. Why don't you post your shell script, there are plenty of people here who can find the problem.

– Graeme
Feb 24 '14 at 18:10





AFAIK there is no feasible way to accomplish what you want. Why don't you post your shell script, there are plenty of people here who can find the problem.

– Graeme
Feb 24 '14 at 18:10













Do you want to move or copy ?

– X Tian
Feb 24 '14 at 19:42





Do you want to move or copy ?

– X Tian
Feb 24 '14 at 19:42













I have never used the --inplace switch but seems like it updates and existing file on the destination. And if your destination is, somehow forcing a confirmation, i.e. hit 'y' or 'n', that might explain why it is hanging. Try making the destination file names such that they will not exists in ther detination location and see if your script will proceed w/o needing a ctrl-c etc. Just a troubleshooting suggestion, not intended to be a solution.

– MelBurslan
Feb 24 '14 at 21:23





I have never used the --inplace switch but seems like it updates and existing file on the destination. And if your destination is, somehow forcing a confirmation, i.e. hit 'y' or 'n', that might explain why it is hanging. Try making the destination file names such that they will not exists in ther detination location and see if your script will proceed w/o needing a ctrl-c etc. Just a troubleshooting suggestion, not intended to be a solution.

– MelBurslan
Feb 24 '14 at 21:23




2




2





I don't understand the question. What's wrong with mv file1.mpg /mnt/s3/directory1/; mv file2.mpg /mnt/s3/directorya/; …?

– Gilles
Feb 24 '14 at 23:46





I don't understand the question. What's wrong with mv file1.mpg /mnt/s3/directory1/; mv file2.mpg /mnt/s3/directorya/; …?

– Gilles
Feb 24 '14 at 23:46










1 Answer
1






active

oldest

votes


















1














#!/bin/bash
set -e
R="rsync -a --timeout=10"
$R file1.mpg /mnt/s3/directory1/
$R file2.mpg /mnt/s3/directorya/





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%2f116743%2frsync-multiple-files-to-multiple-directories%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    #!/bin/bash
    set -e
    R="rsync -a --timeout=10"
    $R file1.mpg /mnt/s3/directory1/
    $R file2.mpg /mnt/s3/directorya/





    share|improve this answer





























      1














      #!/bin/bash
      set -e
      R="rsync -a --timeout=10"
      $R file1.mpg /mnt/s3/directory1/
      $R file2.mpg /mnt/s3/directorya/





      share|improve this answer



























        1












        1








        1







        #!/bin/bash
        set -e
        R="rsync -a --timeout=10"
        $R file1.mpg /mnt/s3/directory1/
        $R file2.mpg /mnt/s3/directorya/





        share|improve this answer















        #!/bin/bash
        set -e
        R="rsync -a --timeout=10"
        $R file1.mpg /mnt/s3/directory1/
        $R file2.mpg /mnt/s3/directorya/






        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Jan 24 at 21:24

























        answered Jan 24 at 8:47









        user1133275user1133275

        3,357723




        3,357723



























            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%2f116743%2frsync-multiple-files-to-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

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

            Bahrain

            Postfix configuration issue with fips on centos 7; mailgun relay