Unix C++
Would you like to react to this message? Create an account in a few clicks or log in to continue.

to find empty files

+2
urvershi
preethika subramanian
6 posters

Go down

to find empty files Empty to find empty files

Post by preethika subramanian Wed Mar 03, 2010 11:58 am

use the commands
find -empty
or
find / -size 0 -print

preethika subramanian

Posts : 6
Points : 12
Join date : 2010-02-26

Back to top Go down

to find empty files Empty command to delete all empty files and directories

Post by urvershi Wed Mar 03, 2010 12:10 pm

find . -empty | xargs rm -rf

urvershi

Posts : 21
Points : 70
Join date : 2010-02-26

Back to top Go down

to find empty files Empty Re: to find empty files

Post by ARVINTH B.J Wed Mar 03, 2010 3:46 pm

when the file is empty why do u want to find it Question

ARVINTH B.J

Posts : 20
Points : 31
Join date : 2010-02-26

Back to top Go down

to find empty files Empty Re: to find empty files

Post by preethika subramanian Wed Mar 03, 2010 6:57 pm

to delete the unwanted empty files......

preethika subramanian

Posts : 6
Points : 12
Join date : 2010-02-26

Back to top Go down

to find empty files Empty Re: to find empty files

Post by Mekala Thu Mar 04, 2010 6:52 pm

how to delete empty files interactively???
I tried this
find . -size 0 -print | xargs rm -i
but the qns for deleting r displaying but couldn delete the files

Mekala

Posts : 7
Points : 12
Join date : 2010-03-04

Back to top Go down

to find empty files Empty Re: to find empty files

Post by akalya Thu Mar 04, 2010 7:03 pm

try this one:
find . -empty -exec rm -i {} ';'
or
find.-empty -print -exec rm -i {}';'

cheers

akalya

Posts : 70
Points : 86
Join date : 2010-03-04

Back to top Go down

to find empty files Empty Re: to find empty files

Post by Christopher Thu Mar 04, 2010 7:09 pm

Code:
$ rm -i `find . -empty`
It should work.
Christopher
Christopher
Admin

Posts : 240
Points : 429
Join date : 2010-02-26
Age : 35

https://unixcpp.forumotion.com

Back to top Go down

to find empty files Empty Re: to find empty files

Post by Sponsored content


Sponsored content


Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum