dapurhosting.com Blog for Tech

August 6, 2018

File Count

Filed under: Uncategorized — dh @ 4:53 pm
ls -1 | wc -l

August 2, 2018

Delete Empty File or 0b File

Filed under: Server — dh @ 3:19 am

Use the Find command to find files by size and print file names to standard output.

find . -type f -size 0b -print

substitute -print with -delete to delete the files rather than print them on screen.

find . -type f -size 0b -delete

Powered by WordPress