How to copy the contents of all files with a certain name into a new file?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
What I want to do is search for all the files whose name meet a certain requirement (starts with 's', followed by either a '1' or a '2' and end with 'sh') and then copy the contents of all those files into a new file, (name ending with .txt
).
So far, what I think it should look like is this:
cat / "s[1-2]*sh" >> /home/admin/Desktop/myFile.txt
But it does not work, reporting
cat: /: Is a directory
I'm completely out of ideas. I'm running ubuntu 18.04.1
linux
New contributor
add a comment |
What I want to do is search for all the files whose name meet a certain requirement (starts with 's', followed by either a '1' or a '2' and end with 'sh') and then copy the contents of all those files into a new file, (name ending with .txt
).
So far, what I think it should look like is this:
cat / "s[1-2]*sh" >> /home/admin/Desktop/myFile.txt
But it does not work, reporting
cat: /: Is a directory
I'm completely out of ideas. I'm running ubuntu 18.04.1
linux
New contributor
All files everywhere or all files in a certain directory?
– Jesse_b
Apr 13 at 17:58
All files everywhere
– Eleuis
Apr 13 at 18:00
add a comment |
What I want to do is search for all the files whose name meet a certain requirement (starts with 's', followed by either a '1' or a '2' and end with 'sh') and then copy the contents of all those files into a new file, (name ending with .txt
).
So far, what I think it should look like is this:
cat / "s[1-2]*sh" >> /home/admin/Desktop/myFile.txt
But it does not work, reporting
cat: /: Is a directory
I'm completely out of ideas. I'm running ubuntu 18.04.1
linux
New contributor
What I want to do is search for all the files whose name meet a certain requirement (starts with 's', followed by either a '1' or a '2' and end with 'sh') and then copy the contents of all those files into a new file, (name ending with .txt
).
So far, what I think it should look like is this:
cat / "s[1-2]*sh" >> /home/admin/Desktop/myFile.txt
But it does not work, reporting
cat: /: Is a directory
I'm completely out of ideas. I'm running ubuntu 18.04.1
linux
linux
New contributor
New contributor
edited Apr 13 at 18:59
ctrl-alt-delor
12.5k52663
12.5k52663
New contributor
asked Apr 13 at 17:36
EleuisEleuis
133
133
New contributor
New contributor
All files everywhere or all files in a certain directory?
– Jesse_b
Apr 13 at 17:58
All files everywhere
– Eleuis
Apr 13 at 18:00
add a comment |
All files everywhere or all files in a certain directory?
– Jesse_b
Apr 13 at 17:58
All files everywhere
– Eleuis
Apr 13 at 18:00
All files everywhere or all files in a certain directory?
– Jesse_b
Apr 13 at 17:58
All files everywhere or all files in a certain directory?
– Jesse_b
Apr 13 at 17:58
All files everywhere
– Eleuis
Apr 13 at 18:00
All files everywhere
– Eleuis
Apr 13 at 18:00
add a comment |
1 Answer
1
active
oldest
votes
To concatenate the files in your current directory:
cat s[12]*sh > /home/admin/Desktop/myFile.txt
To find and concatenate the files in your current directory and subdirectories:
find . -name "s[12]*sh" -exec cat '{}' > /home/admin/Desktop/myFile.txt ;
To find and concatenate the files everywhere:
find / -name "s[12]*sh" -exec cat '{}' > /home/admin/Desktop/myFile.txt ;
3
note thatfind -exec cat {} > out.txt ;
is exactly equivalent tofind -exec cat {} ; > out.txt
as the shell processes the redirection beforefind
runs, and it applies to the wholefind
process. So you might as well put the;
before the redirection for clarity. Also, you can use-exec cat {} +
to havefind
pass more than one file name to eachcat
invocation. The effect is the same, but it can be faster for large numbers of files.
– ilkkachu
Apr 13 at 18:07
It works perfectly, thank you
– Eleuis
Apr 13 at 18:08
1
To accept an answer click the ✓
– ctrl-alt-delor
Apr 13 at 18:31
1
-exec cat {} +
would be more efficient as it would callcat
as few times as possible.
– Kusalananda♦
Apr 13 at 19:26
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
});
}
});
Eleuis is a new contributor. Be nice, and check out our Code of Conduct.
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%2f512307%2fhow-to-copy-the-contents-of-all-files-with-a-certain-name-into-a-new-file%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
To concatenate the files in your current directory:
cat s[12]*sh > /home/admin/Desktop/myFile.txt
To find and concatenate the files in your current directory and subdirectories:
find . -name "s[12]*sh" -exec cat '{}' > /home/admin/Desktop/myFile.txt ;
To find and concatenate the files everywhere:
find / -name "s[12]*sh" -exec cat '{}' > /home/admin/Desktop/myFile.txt ;
3
note thatfind -exec cat {} > out.txt ;
is exactly equivalent tofind -exec cat {} ; > out.txt
as the shell processes the redirection beforefind
runs, and it applies to the wholefind
process. So you might as well put the;
before the redirection for clarity. Also, you can use-exec cat {} +
to havefind
pass more than one file name to eachcat
invocation. The effect is the same, but it can be faster for large numbers of files.
– ilkkachu
Apr 13 at 18:07
It works perfectly, thank you
– Eleuis
Apr 13 at 18:08
1
To accept an answer click the ✓
– ctrl-alt-delor
Apr 13 at 18:31
1
-exec cat {} +
would be more efficient as it would callcat
as few times as possible.
– Kusalananda♦
Apr 13 at 19:26
add a comment |
To concatenate the files in your current directory:
cat s[12]*sh > /home/admin/Desktop/myFile.txt
To find and concatenate the files in your current directory and subdirectories:
find . -name "s[12]*sh" -exec cat '{}' > /home/admin/Desktop/myFile.txt ;
To find and concatenate the files everywhere:
find / -name "s[12]*sh" -exec cat '{}' > /home/admin/Desktop/myFile.txt ;
3
note thatfind -exec cat {} > out.txt ;
is exactly equivalent tofind -exec cat {} ; > out.txt
as the shell processes the redirection beforefind
runs, and it applies to the wholefind
process. So you might as well put the;
before the redirection for clarity. Also, you can use-exec cat {} +
to havefind
pass more than one file name to eachcat
invocation. The effect is the same, but it can be faster for large numbers of files.
– ilkkachu
Apr 13 at 18:07
It works perfectly, thank you
– Eleuis
Apr 13 at 18:08
1
To accept an answer click the ✓
– ctrl-alt-delor
Apr 13 at 18:31
1
-exec cat {} +
would be more efficient as it would callcat
as few times as possible.
– Kusalananda♦
Apr 13 at 19:26
add a comment |
To concatenate the files in your current directory:
cat s[12]*sh > /home/admin/Desktop/myFile.txt
To find and concatenate the files in your current directory and subdirectories:
find . -name "s[12]*sh" -exec cat '{}' > /home/admin/Desktop/myFile.txt ;
To find and concatenate the files everywhere:
find / -name "s[12]*sh" -exec cat '{}' > /home/admin/Desktop/myFile.txt ;
To concatenate the files in your current directory:
cat s[12]*sh > /home/admin/Desktop/myFile.txt
To find and concatenate the files in your current directory and subdirectories:
find . -name "s[12]*sh" -exec cat '{}' > /home/admin/Desktop/myFile.txt ;
To find and concatenate the files everywhere:
find / -name "s[12]*sh" -exec cat '{}' > /home/admin/Desktop/myFile.txt ;
answered Apr 13 at 18:00
FreddyFreddy
1,989210
1,989210
3
note thatfind -exec cat {} > out.txt ;
is exactly equivalent tofind -exec cat {} ; > out.txt
as the shell processes the redirection beforefind
runs, and it applies to the wholefind
process. So you might as well put the;
before the redirection for clarity. Also, you can use-exec cat {} +
to havefind
pass more than one file name to eachcat
invocation. The effect is the same, but it can be faster for large numbers of files.
– ilkkachu
Apr 13 at 18:07
It works perfectly, thank you
– Eleuis
Apr 13 at 18:08
1
To accept an answer click the ✓
– ctrl-alt-delor
Apr 13 at 18:31
1
-exec cat {} +
would be more efficient as it would callcat
as few times as possible.
– Kusalananda♦
Apr 13 at 19:26
add a comment |
3
note thatfind -exec cat {} > out.txt ;
is exactly equivalent tofind -exec cat {} ; > out.txt
as the shell processes the redirection beforefind
runs, and it applies to the wholefind
process. So you might as well put the;
before the redirection for clarity. Also, you can use-exec cat {} +
to havefind
pass more than one file name to eachcat
invocation. The effect is the same, but it can be faster for large numbers of files.
– ilkkachu
Apr 13 at 18:07
It works perfectly, thank you
– Eleuis
Apr 13 at 18:08
1
To accept an answer click the ✓
– ctrl-alt-delor
Apr 13 at 18:31
1
-exec cat {} +
would be more efficient as it would callcat
as few times as possible.
– Kusalananda♦
Apr 13 at 19:26
3
3
note that
find -exec cat {} > out.txt ;
is exactly equivalent to find -exec cat {} ; > out.txt
as the shell processes the redirection before find
runs, and it applies to the whole find
process. So you might as well put the ;
before the redirection for clarity. Also, you can use -exec cat {} +
to have find
pass more than one file name to each cat
invocation. The effect is the same, but it can be faster for large numbers of files.– ilkkachu
Apr 13 at 18:07
note that
find -exec cat {} > out.txt ;
is exactly equivalent to find -exec cat {} ; > out.txt
as the shell processes the redirection before find
runs, and it applies to the whole find
process. So you might as well put the ;
before the redirection for clarity. Also, you can use -exec cat {} +
to have find
pass more than one file name to each cat
invocation. The effect is the same, but it can be faster for large numbers of files.– ilkkachu
Apr 13 at 18:07
It works perfectly, thank you
– Eleuis
Apr 13 at 18:08
It works perfectly, thank you
– Eleuis
Apr 13 at 18:08
1
1
To accept an answer click the ✓
– ctrl-alt-delor
Apr 13 at 18:31
To accept an answer click the ✓
– ctrl-alt-delor
Apr 13 at 18:31
1
1
-exec cat {} +
would be more efficient as it would call cat
as few times as possible.– Kusalananda♦
Apr 13 at 19:26
-exec cat {} +
would be more efficient as it would call cat
as few times as possible.– Kusalananda♦
Apr 13 at 19:26
add a comment |
Eleuis is a new contributor. Be nice, and check out our Code of Conduct.
Eleuis is a new contributor. Be nice, and check out our Code of Conduct.
Eleuis is a new contributor. Be nice, and check out our Code of Conduct.
Eleuis is a new contributor. Be nice, and check out our Code of Conduct.
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%2f512307%2fhow-to-copy-the-contents-of-all-files-with-a-certain-name-into-a-new-file%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
All files everywhere or all files in a certain directory?
– Jesse_b
Apr 13 at 17:58
All files everywhere
– Eleuis
Apr 13 at 18:00