Create delete_o_sized_file.sh

This commit is contained in:
epitaxy
2022-06-26 14:52:36 +09:00
committed by GitHub
parent b9ac82380a
commit f0a64e7bd2

View File

@@ -0,0 +1,3 @@
#!/bin/sh
# delete zero-sized file in the current path
find . -size 0 -print -delete