Hi all,
How can i delete multiple files based on their size in a shell script.....below given is the code which works only for files having same size.
find <path> -size 100c -exec 'rm -f {}' \;
This code is good only for files having size of 100 bytes....also, are there any implications (other than risk of deleting imp files) of deleting files this way??
any early response is highly appreciated......thanks in advance....