Delete the output of find

Clash Royale CLAN TAG#URR8PPP up vote
-1
down vote
favorite
I installed app called zoom and it somehow stopped working. I tried reinstalling it but still wouldn't work. I'm trying to delete any files related to the application.
I tried
find / * | grep "zoom"
Is there a way i can delete files shown by this command
command-line delete grep find
add a comment |Â
up vote
-1
down vote
favorite
I installed app called zoom and it somehow stopped working. I tried reinstalling it but still wouldn't work. I'm trying to delete any files related to the application.
I tried
find / * | grep "zoom"
Is there a way i can delete files shown by this command
command-line delete grep find
add a comment |Â
up vote
-1
down vote
favorite
up vote
-1
down vote
favorite
I installed app called zoom and it somehow stopped working. I tried reinstalling it but still wouldn't work. I'm trying to delete any files related to the application.
I tried
find / * | grep "zoom"
Is there a way i can delete files shown by this command
command-line delete grep find
I installed app called zoom and it somehow stopped working. I tried reinstalling it but still wouldn't work. I'm trying to delete any files related to the application.
I tried
find / * | grep "zoom"
Is there a way i can delete files shown by this command
command-line delete grep find
command-line delete grep find
edited Mar 14 at 3:52
muru
130k19274467
130k19274467
asked Mar 14 at 2:38
Sagar Lama
11
11
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
6
down vote
Your find command is silly. How did you install zoom? If via synaptic, apt, apt-get or any other installer that respects the Ubuntu packaging system, you may see the files with
dpkg -L zoom
and remove it (and not confuse the packaging system) with
sudo apt purge zoom
If you insist on using find, re-read man find, and do something like
sudo find / -iname 'zoom*'
or (read man xargs)
sudo find / -type f -iname 'zoom*' -print0 | xargs -0 echo rm
to delete all the files whose names start with zoom. Remove the echo word when you are happy with the generated file list.
Or-delete, so that you can delete the directories as well.
â muru
Mar 14 at 3:53
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
6
down vote
Your find command is silly. How did you install zoom? If via synaptic, apt, apt-get or any other installer that respects the Ubuntu packaging system, you may see the files with
dpkg -L zoom
and remove it (and not confuse the packaging system) with
sudo apt purge zoom
If you insist on using find, re-read man find, and do something like
sudo find / -iname 'zoom*'
or (read man xargs)
sudo find / -type f -iname 'zoom*' -print0 | xargs -0 echo rm
to delete all the files whose names start with zoom. Remove the echo word when you are happy with the generated file list.
Or-delete, so that you can delete the directories as well.
â muru
Mar 14 at 3:53
add a comment |Â
up vote
6
down vote
Your find command is silly. How did you install zoom? If via synaptic, apt, apt-get or any other installer that respects the Ubuntu packaging system, you may see the files with
dpkg -L zoom
and remove it (and not confuse the packaging system) with
sudo apt purge zoom
If you insist on using find, re-read man find, and do something like
sudo find / -iname 'zoom*'
or (read man xargs)
sudo find / -type f -iname 'zoom*' -print0 | xargs -0 echo rm
to delete all the files whose names start with zoom. Remove the echo word when you are happy with the generated file list.
Or-delete, so that you can delete the directories as well.
â muru
Mar 14 at 3:53
add a comment |Â
up vote
6
down vote
up vote
6
down vote
Your find command is silly. How did you install zoom? If via synaptic, apt, apt-get or any other installer that respects the Ubuntu packaging system, you may see the files with
dpkg -L zoom
and remove it (and not confuse the packaging system) with
sudo apt purge zoom
If you insist on using find, re-read man find, and do something like
sudo find / -iname 'zoom*'
or (read man xargs)
sudo find / -type f -iname 'zoom*' -print0 | xargs -0 echo rm
to delete all the files whose names start with zoom. Remove the echo word when you are happy with the generated file list.
Your find command is silly. How did you install zoom? If via synaptic, apt, apt-get or any other installer that respects the Ubuntu packaging system, you may see the files with
dpkg -L zoom
and remove it (and not confuse the packaging system) with
sudo apt purge zoom
If you insist on using find, re-read man find, and do something like
sudo find / -iname 'zoom*'
or (read man xargs)
sudo find / -type f -iname 'zoom*' -print0 | xargs -0 echo rm
to delete all the files whose names start with zoom. Remove the echo word when you are happy with the generated file list.
answered Mar 14 at 2:47
waltinator
20.7k74068
20.7k74068
Or-delete, so that you can delete the directories as well.
â muru
Mar 14 at 3:53
add a comment |Â
Or-delete, so that you can delete the directories as well.
â muru
Mar 14 at 3:53
Or
-delete, so that you can delete the directories as well.â muru
Mar 14 at 3:53
Or
-delete, so that you can delete the directories as well.â muru
Mar 14 at 3:53
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1014754%2fdelete-the-output-of-find%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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