rsync multiple files to multiple directories
Clash Royale CLAN TAG#URR8PPP
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
add a comment |
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
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 withmv file1.mpg /mnt/s3/directory1/; mv file2.mpg /mnt/s3/directorya/; …
?
– Gilles
Feb 24 '14 at 23:46
add a comment |
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
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
command-line rsync
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 withmv file1.mpg /mnt/s3/directory1/; mv file2.mpg /mnt/s3/directorya/; …
?
– Gilles
Feb 24 '14 at 23:46
add a comment |
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 withmv 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
add a comment |
1 Answer
1
active
oldest
votes
#!/bin/bash
set -e
R="rsync -a --timeout=10"
$R file1.mpg /mnt/s3/directory1/
$R file2.mpg /mnt/s3/directorya/
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
#!/bin/bash
set -e
R="rsync -a --timeout=10"
$R file1.mpg /mnt/s3/directory1/
$R file2.mpg /mnt/s3/directorya/
add a comment |
#!/bin/bash
set -e
R="rsync -a --timeout=10"
$R file1.mpg /mnt/s3/directory1/
$R file2.mpg /mnt/s3/directorya/
add a comment |
#!/bin/bash
set -e
R="rsync -a --timeout=10"
$R file1.mpg /mnt/s3/directory1/
$R file2.mpg /mnt/s3/directorya/
#!/bin/bash
set -e
R="rsync -a --timeout=10"
$R file1.mpg /mnt/s3/directory1/
$R file2.mpg /mnt/s3/directorya/
edited Jan 24 at 21:24
answered Jan 24 at 8:47
user1133275user1133275
3,357723
3,357723
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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