I've seen questions about how I can remove all files under a certain file size, but none of them have dealt with very small files (most of mine are simple .txt files that contain 500-1200 characters). All of the solutions I've seen so far look something like
find . -size -1k -delete
I've tried using the following:
find . -size -600
find . -size -600b
find . -size -0.6k
None of which worked, can someone tell me how to make this method work for smaller file sizes? (I'm sure I'm just missing a trailing character after the 600)