Rename delete_zero_sized_file.sh to delete_zero_sized_files.sh

This commit is contained in:
epitaxy
2022-06-26 14:53:47 +09:00
committed by GitHub
parent 534ce857e8
commit 2038efdc23

View File

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