You can remove those unnecessary log files with no data using below command.
Code: Select all
find ./ -type f -size 0 -deleteCode: Select all
find ./ -type f -size -20k -deleteThe -type 'f' forces the command to only act on files and skip directories.
