How to use find with regex to delete files beginning with certain letters
I have a nested directory structure that looks like this:
top_dir
└── nested_1
└── nested_2
├── a_file.txt
├── b_file.txt
├── directory
├── other_directory
├── y_file.txt
└── z_file.txt
I want to delete the files inside nested_2
that don't start with A-M, and leave the directories alone. So I want to delete y_file.txt
and z_file.txt
.
I need to run the find + regex command in top_dir
.
I've tried multiple versions of this:
find nested_1/nested_2 -maxdepth 1 -mindepth 1 -type f -regex "nested_1/nested_2/.*^[a-m]" #-delete
It doesn't seem to matter what regex I use - the only one that produces any result at all is
find nested_1/nested_2 -maxdepth 1 -mindepth 1 -type f -regex ".*" #-delete
which just gives me a list of all the files in the directory with the leading nested directories (as expected).
Testing it out on regexr hasn't helped either.
What am I missing here?
linux regex
add a comment |
I have a nested directory structure that looks like this:
top_dir
└── nested_1
└── nested_2
├── a_file.txt
├── b_file.txt
├── directory
├── other_directory
├── y_file.txt
└── z_file.txt
I want to delete the files inside nested_2
that don't start with A-M, and leave the directories alone. So I want to delete y_file.txt
and z_file.txt
.
I need to run the find + regex command in top_dir
.
I've tried multiple versions of this:
find nested_1/nested_2 -maxdepth 1 -mindepth 1 -type f -regex "nested_1/nested_2/.*^[a-m]" #-delete
It doesn't seem to matter what regex I use - the only one that produces any result at all is
find nested_1/nested_2 -maxdepth 1 -mindepth 1 -type f -regex ".*" #-delete
which just gives me a list of all the files in the directory with the leading nested directories (as expected).
Testing it out on regexr hasn't helped either.
What am I missing here?
linux regex
add a comment |
I have a nested directory structure that looks like this:
top_dir
└── nested_1
└── nested_2
├── a_file.txt
├── b_file.txt
├── directory
├── other_directory
├── y_file.txt
└── z_file.txt
I want to delete the files inside nested_2
that don't start with A-M, and leave the directories alone. So I want to delete y_file.txt
and z_file.txt
.
I need to run the find + regex command in top_dir
.
I've tried multiple versions of this:
find nested_1/nested_2 -maxdepth 1 -mindepth 1 -type f -regex "nested_1/nested_2/.*^[a-m]" #-delete
It doesn't seem to matter what regex I use - the only one that produces any result at all is
find nested_1/nested_2 -maxdepth 1 -mindepth 1 -type f -regex ".*" #-delete
which just gives me a list of all the files in the directory with the leading nested directories (as expected).
Testing it out on regexr hasn't helped either.
What am I missing here?
linux regex
I have a nested directory structure that looks like this:
top_dir
└── nested_1
└── nested_2
├── a_file.txt
├── b_file.txt
├── directory
├── other_directory
├── y_file.txt
└── z_file.txt
I want to delete the files inside nested_2
that don't start with A-M, and leave the directories alone. So I want to delete y_file.txt
and z_file.txt
.
I need to run the find + regex command in top_dir
.
I've tried multiple versions of this:
find nested_1/nested_2 -maxdepth 1 -mindepth 1 -type f -regex "nested_1/nested_2/.*^[a-m]" #-delete
It doesn't seem to matter what regex I use - the only one that produces any result at all is
find nested_1/nested_2 -maxdepth 1 -mindepth 1 -type f -regex ".*" #-delete
which just gives me a list of all the files in the directory with the leading nested directories (as expected).
Testing it out on regexr hasn't helped either.
What am I missing here?
linux regex
linux regex
edited Feb 12 at 21:43
Kamil Maciorowski
28.6k156187
28.6k156187
asked Feb 12 at 21:18
katiekeelkatiekeel
84
84
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
^[a-m]
should be[^a-m]
.- After the first letter there may be the rest of the filename, so you need
.*
after[^a-m]
, not before. - These backshlashes are not needed (they don't hurt though).
find nested_1/nested_2 -maxdepth 1 -mindepth 1 -type f -regex "nested_1/nested_2/[^a-m].*" #-delete
Notes:
- Linux and its filesystems are case sensitive. Things "that don't start with A-M" would be
[^A-M].*
. - Sometimes
[^a-m]
(or[^A-M]
) may not be what you think.
Thank you so much! Yes, the lack of closing quote was a typo. Super frustrating to learn that the caret being inside the bracket was the main problem, but hey... that's programming :)
– katiekeel
Feb 12 at 21:42
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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%2fsuperuser.com%2fquestions%2f1405014%2fhow-to-use-find-with-regex-to-delete-files-beginning-with-certain-letters%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
^[a-m]
should be[^a-m]
.- After the first letter there may be the rest of the filename, so you need
.*
after[^a-m]
, not before. - These backshlashes are not needed (they don't hurt though).
find nested_1/nested_2 -maxdepth 1 -mindepth 1 -type f -regex "nested_1/nested_2/[^a-m].*" #-delete
Notes:
- Linux and its filesystems are case sensitive. Things "that don't start with A-M" would be
[^A-M].*
. - Sometimes
[^a-m]
(or[^A-M]
) may not be what you think.
Thank you so much! Yes, the lack of closing quote was a typo. Super frustrating to learn that the caret being inside the bracket was the main problem, but hey... that's programming :)
– katiekeel
Feb 12 at 21:42
add a comment |
^[a-m]
should be[^a-m]
.- After the first letter there may be the rest of the filename, so you need
.*
after[^a-m]
, not before. - These backshlashes are not needed (they don't hurt though).
find nested_1/nested_2 -maxdepth 1 -mindepth 1 -type f -regex "nested_1/nested_2/[^a-m].*" #-delete
Notes:
- Linux and its filesystems are case sensitive. Things "that don't start with A-M" would be
[^A-M].*
. - Sometimes
[^a-m]
(or[^A-M]
) may not be what you think.
Thank you so much! Yes, the lack of closing quote was a typo. Super frustrating to learn that the caret being inside the bracket was the main problem, but hey... that's programming :)
– katiekeel
Feb 12 at 21:42
add a comment |
^[a-m]
should be[^a-m]
.- After the first letter there may be the rest of the filename, so you need
.*
after[^a-m]
, not before. - These backshlashes are not needed (they don't hurt though).
find nested_1/nested_2 -maxdepth 1 -mindepth 1 -type f -regex "nested_1/nested_2/[^a-m].*" #-delete
Notes:
- Linux and its filesystems are case sensitive. Things "that don't start with A-M" would be
[^A-M].*
. - Sometimes
[^a-m]
(or[^A-M]
) may not be what you think.
^[a-m]
should be[^a-m]
.- After the first letter there may be the rest of the filename, so you need
.*
after[^a-m]
, not before. - These backshlashes are not needed (they don't hurt though).
find nested_1/nested_2 -maxdepth 1 -mindepth 1 -type f -regex "nested_1/nested_2/[^a-m].*" #-delete
Notes:
- Linux and its filesystems are case sensitive. Things "that don't start with A-M" would be
[^A-M].*
. - Sometimes
[^a-m]
(or[^A-M]
) may not be what you think.
edited Feb 12 at 21:44
answered Feb 12 at 21:38
Kamil MaciorowskiKamil Maciorowski
28.6k156187
28.6k156187
Thank you so much! Yes, the lack of closing quote was a typo. Super frustrating to learn that the caret being inside the bracket was the main problem, but hey... that's programming :)
– katiekeel
Feb 12 at 21:42
add a comment |
Thank you so much! Yes, the lack of closing quote was a typo. Super frustrating to learn that the caret being inside the bracket was the main problem, but hey... that's programming :)
– katiekeel
Feb 12 at 21:42
Thank you so much! Yes, the lack of closing quote was a typo. Super frustrating to learn that the caret being inside the bracket was the main problem, but hey... that's programming :)
– katiekeel
Feb 12 at 21:42
Thank you so much! Yes, the lack of closing quote was a typo. Super frustrating to learn that the caret being inside the bracket was the main problem, but hey... that's programming :)
– katiekeel
Feb 12 at 21:42
add a comment |
Thanks for contributing an answer to Super User!
- 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%2fsuperuser.com%2fquestions%2f1405014%2fhow-to-use-find-with-regex-to-delete-files-beginning-with-certain-letters%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