mirror of
https://github.com/epitaxy/charms.git
synced 2025-12-07 00:15:55 +09:00
4 lines
85 B
Bash
4 lines
85 B
Bash
#!/bin/sh
|
|
# delete zero-sized file in the current path
|
|
find . -size 0 -print -delete
|