how do i delete a certain file in linux if its size is 0. I want to execute this in an crontab without any extra script.
l filename.file | grep 5th-tab | not eq 0 | rm
Something like this?
|
feedback
|
|
This will delete all the files in a directory (and below) that are size zero.
If you just want a particular file;
| |||||||||||
feedback
|
|
On Linux, the stat(1) command is useful when you don't need find(1):
The stat command here allows us just to get the file size, that's the | |||
|
feedback
|