You may use the following commands:
Quote:
du -b filename (to know size in bytes )
find /path -type f -size size-in-bytes%c
|
if you are satisfied with the output then remove the files using ....
Quote:
|
find /path -type f -size size-in-bytes%c -exec rm {} \;
|
I have added the % sign just to let you know it is there....You need to use the command after removing the % sign.
Quote:
Originally Posted by drpaudel
I have many files in my computer having same size with decimal like 183.9k. How can i delete from my computer.
|