Rename delete_o_sized_file.sh to delete_zero_sized_file.sh

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

View File

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