Deleting all the listed files [duplicate]
up vote
0
down vote
favorite
This question already has an answer here:
How to delete all files that are returned by locate
3 answers
I used locate <filename>
in order to see where are all the files with <filename>
. Is there a command to delete all the files with that <filename>
?
For example, I want to delete all the files with the name qownnotes as in image
command-line delete locate
marked as duplicate by muru
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 28 at 5:58
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
up vote
0
down vote
favorite
This question already has an answer here:
How to delete all files that are returned by locate
3 answers
I used locate <filename>
in order to see where are all the files with <filename>
. Is there a command to delete all the files with that <filename>
?
For example, I want to delete all the files with the name qownnotes as in image
command-line delete locate
marked as duplicate by muru
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 28 at 5:58
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
This question already has an answer here:
How to delete all files that are returned by locate
3 answers
I used locate <filename>
in order to see where are all the files with <filename>
. Is there a command to delete all the files with that <filename>
?
For example, I want to delete all the files with the name qownnotes as in image
command-line delete locate
This question already has an answer here:
How to delete all files that are returned by locate
3 answers
I used locate <filename>
in order to see where are all the files with <filename>
. Is there a command to delete all the files with that <filename>
?
For example, I want to delete all the files with the name qownnotes as in image
This question already has an answer here:
How to delete all files that are returned by locate
3 answers
command-line delete locate
command-line delete locate
edited Nov 28 at 5:58
muru
135k19289490
135k19289490
asked Nov 28 at 4:11
user23
435
435
marked as duplicate by muru
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 28 at 5:58
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by muru
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 28 at 5:58
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
Using the find command, you can do a search for and subsequently execute an action.
find / -iname *qownnotes* -exec rm -rf {} ;
This above command searches the file system, starting at the root level, case insensitive in the name, and matches files or directories. The qownnotes
string can be at any place in the file or directory name, indicated by the first escaped asterisk and the ending escaped asterisk.
When it finds a match, it will execute the remove command, with the recursive and force attributes. The search results will populate into the brackets, and the ending slash and semicolon prevent escaping.
As written above, it will remove all files it finds without confirmation, so be sure it is what you're wanting to do before running it.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Using the find command, you can do a search for and subsequently execute an action.
find / -iname *qownnotes* -exec rm -rf {} ;
This above command searches the file system, starting at the root level, case insensitive in the name, and matches files or directories. The qownnotes
string can be at any place in the file or directory name, indicated by the first escaped asterisk and the ending escaped asterisk.
When it finds a match, it will execute the remove command, with the recursive and force attributes. The search results will populate into the brackets, and the ending slash and semicolon prevent escaping.
As written above, it will remove all files it finds without confirmation, so be sure it is what you're wanting to do before running it.
add a comment |
up vote
0
down vote
Using the find command, you can do a search for and subsequently execute an action.
find / -iname *qownnotes* -exec rm -rf {} ;
This above command searches the file system, starting at the root level, case insensitive in the name, and matches files or directories. The qownnotes
string can be at any place in the file or directory name, indicated by the first escaped asterisk and the ending escaped asterisk.
When it finds a match, it will execute the remove command, with the recursive and force attributes. The search results will populate into the brackets, and the ending slash and semicolon prevent escaping.
As written above, it will remove all files it finds without confirmation, so be sure it is what you're wanting to do before running it.
add a comment |
up vote
0
down vote
up vote
0
down vote
Using the find command, you can do a search for and subsequently execute an action.
find / -iname *qownnotes* -exec rm -rf {} ;
This above command searches the file system, starting at the root level, case insensitive in the name, and matches files or directories. The qownnotes
string can be at any place in the file or directory name, indicated by the first escaped asterisk and the ending escaped asterisk.
When it finds a match, it will execute the remove command, with the recursive and force attributes. The search results will populate into the brackets, and the ending slash and semicolon prevent escaping.
As written above, it will remove all files it finds without confirmation, so be sure it is what you're wanting to do before running it.
Using the find command, you can do a search for and subsequently execute an action.
find / -iname *qownnotes* -exec rm -rf {} ;
This above command searches the file system, starting at the root level, case insensitive in the name, and matches files or directories. The qownnotes
string can be at any place in the file or directory name, indicated by the first escaped asterisk and the ending escaped asterisk.
When it finds a match, it will execute the remove command, with the recursive and force attributes. The search results will populate into the brackets, and the ending slash and semicolon prevent escaping.
As written above, it will remove all files it finds without confirmation, so be sure it is what you're wanting to do before running it.
answered Nov 28 at 4:25
user117197
11
11
add a comment |
add a comment |