How to move N lines from one file to another
I want to download multiple files, so I decided to create 4 text files that are handled with a script.
toDownload.txt | this file will hold a list of links to download.
inQueue.txt | the files currently downloading will move here and if failed we can continue later using wget -c flag.
downloaded.txt | this file will hold file links that have finished downloading.
failed.txt | this file will hold links that failed to start downloading for example if the URL returns 404.
how can I move the first x number of links from a file and move it to another file?
16.04 server cron wget
add a comment |
I want to download multiple files, so I decided to create 4 text files that are handled with a script.
toDownload.txt | this file will hold a list of links to download.
inQueue.txt | the files currently downloading will move here and if failed we can continue later using wget -c flag.
downloaded.txt | this file will hold file links that have finished downloading.
failed.txt | this file will hold links that failed to start downloading for example if the URL returns 404.
how can I move the first x number of links from a file and move it to another file?
16.04 server cron wget
@PerlDuck thanks for your suggestion, I have updated the title.
– Abdellah Chadidi
Dec 29 '18 at 16:59
add a comment |
I want to download multiple files, so I decided to create 4 text files that are handled with a script.
toDownload.txt | this file will hold a list of links to download.
inQueue.txt | the files currently downloading will move here and if failed we can continue later using wget -c flag.
downloaded.txt | this file will hold file links that have finished downloading.
failed.txt | this file will hold links that failed to start downloading for example if the URL returns 404.
how can I move the first x number of links from a file and move it to another file?
16.04 server cron wget
I want to download multiple files, so I decided to create 4 text files that are handled with a script.
toDownload.txt | this file will hold a list of links to download.
inQueue.txt | the files currently downloading will move here and if failed we can continue later using wget -c flag.
downloaded.txt | this file will hold file links that have finished downloading.
failed.txt | this file will hold links that failed to start downloading for example if the URL returns 404.
how can I move the first x number of links from a file and move it to another file?
16.04 server cron wget
16.04 server cron wget
edited Dec 29 '18 at 16:58
Abdellah Chadidi
asked Dec 29 '18 at 14:30
Abdellah ChadidiAbdellah Chadidi
83
83
@PerlDuck thanks for your suggestion, I have updated the title.
– Abdellah Chadidi
Dec 29 '18 at 16:59
add a comment |
@PerlDuck thanks for your suggestion, I have updated the title.
– Abdellah Chadidi
Dec 29 '18 at 16:59
@PerlDuck thanks for your suggestion, I have updated the title.
– Abdellah Chadidi
Dec 29 '18 at 16:59
@PerlDuck thanks for your suggestion, I have updated the title.
– Abdellah Chadidi
Dec 29 '18 at 16:59
add a comment |
1 Answer
1
active
oldest
votes
#!/bin/sh
lines=3
head -n $lines file1.txt >> file2.txt
sed -i -e "1,$lines d" file1.txt
This will append the first three lines from file1.txt
to file2.txt
and then delete the lines 1…3 from file1.txt
effectively
moving the first 3 lines from file1.txt
to the end of file2.txt
.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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
});
}
});
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%2faskubuntu.com%2fquestions%2f1105376%2fhow-to-move-n-lines-from-one-file-to-another%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/sh
lines=3
head -n $lines file1.txt >> file2.txt
sed -i -e "1,$lines d" file1.txt
This will append the first three lines from file1.txt
to file2.txt
and then delete the lines 1…3 from file1.txt
effectively
moving the first 3 lines from file1.txt
to the end of file2.txt
.
add a comment |
#!/bin/sh
lines=3
head -n $lines file1.txt >> file2.txt
sed -i -e "1,$lines d" file1.txt
This will append the first three lines from file1.txt
to file2.txt
and then delete the lines 1…3 from file1.txt
effectively
moving the first 3 lines from file1.txt
to the end of file2.txt
.
add a comment |
#!/bin/sh
lines=3
head -n $lines file1.txt >> file2.txt
sed -i -e "1,$lines d" file1.txt
This will append the first three lines from file1.txt
to file2.txt
and then delete the lines 1…3 from file1.txt
effectively
moving the first 3 lines from file1.txt
to the end of file2.txt
.
#!/bin/sh
lines=3
head -n $lines file1.txt >> file2.txt
sed -i -e "1,$lines d" file1.txt
This will append the first three lines from file1.txt
to file2.txt
and then delete the lines 1…3 from file1.txt
effectively
moving the first 3 lines from file1.txt
to the end of file2.txt
.
answered Dec 29 '18 at 14:55
PerlDuckPerlDuck
5,90711333
5,90711333
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f1105376%2fhow-to-move-n-lines-from-one-file-to-another%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
@PerlDuck thanks for your suggestion, I have updated the title.
– Abdellah Chadidi
Dec 29 '18 at 16:59